Fix more bool usage picked up by the 0.9.1 beta

This commit is contained in:
Derek Cicerone
2013-07-28 20:40:15 -07:00
parent 63af12c1a4
commit 1629acedfa
+2 -2
View File
@@ -1538,7 +1538,7 @@ declare module L {
/**
* Function that will be used to decide whether to show a feature or not.
*/
filter?: (featureData: any, layer: ILayer) => bool;
filter?: (featureData: any, layer: ILayer) => boolean;
}
@@ -2440,7 +2440,7 @@ declare module L {
/**
* Returns a function which always returns false.
*/
static falseFn(): () => bool;
static falseFn(): () => boolean;
/**
* Returns the number num rounded to digits decimals.