mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 20:39:17 +08:00
13 lines
398 B
TypeScript
13 lines
398 B
TypeScript
// Type definitions for leaflet-fullscreen 1.0
|
|
// Project: https://github.com/Leaflet/Leaflet.fullscreen
|
|
// Definitions by: Denis Carriere <https://github.com/DenisCarriere>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="leaflet" />
|
|
|
|
declare namespace L {
|
|
interface MapOptions {
|
|
fullscreenControl?: true | {pseudoFullscreen: boolean};
|
|
}
|
|
}
|