Add declaration for Number.isInteger in libjs.d.ts

This commit is contained in:
Hristo Deshev
2015-06-11 15:33:28 +03:00
parent 7abb80d935
commit a9ee30c3d6

5
libjs.d.ts vendored
View File

@ -498,6 +498,11 @@ declare var Number: {
* JavaScript displays POSITIVE_INFINITY values as infinity.
*/
POSITIVE_INFINITY: number;
/**
* Checks if the passed value is an integer.
*/
isInteger(value: any): boolean;
}
interface Math {