Fix namespace issue

This commit is contained in:
Dominic Alie
2015-10-29 13:36:55 -04:00
parent 954b54bd68
commit 950224d101
+11 -9
View File
@@ -174,16 +174,18 @@ declare module L {
export interface Polyline extends EditableMixin {
}
export interface MapOptions {
/**
* Whether to create a L.Editable instance at map init or not.
*/
editable?: boolean;
module Map {
export interface MapOptions {
/**
* Whether to create a L.Editable instance at map init or not.
*/
editable?: boolean;
/**
* Options to pass to L.Editable when instanciating.
*/
editOptions?: EditOptions;
/**
* Options to pass to L.Editable when instanciating.
*/
editOptions?: EditOptions;
}
}
/**