Merge pull request #809 from derekcicerone/patch-7

Fix more bool usage picked up by the 0.9.1 beta
This commit is contained in:
Diullei Gomes
2013-07-30 19:07:14 -07:00
+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.