mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Update `TypeScript Version`s to be at least as high as dependencies' versions * Run through again
14 lines
426 B
TypeScript
14 lines
426 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
|
|
// TypeScript Version: 2.3
|
|
|
|
import * as L from 'leaflet';
|
|
|
|
declare module 'leaflet' {
|
|
interface MapOptions {
|
|
fullscreenControl?: true | {pseudoFullscreen: boolean};
|
|
}
|
|
}
|