Merge pull request #1596 from derekcicerone/patch-32

Leaflet: fix default icon constructor
This commit is contained in:
Masahiro Wakame
2014-01-27 17:34:50 -08:00
+2 -2
View File
@@ -991,9 +991,9 @@ declare module L {
export class Default extends Icon {
/**
* Creates an icon instance with default options.
* Creates a default icon instance with the given options.
*/
constructor(options: IconOptions);
constructor(options?: IconOptions);
static imagePath: string;
}