diff --git a/lib/lib.d.ts b/lib/lib.d.ts index 586b3675305d3..6d058c0c891a5 100644 --- a/lib/lib.d.ts +++ b/lib/lib.d.ts @@ -44,9 +44,9 @@ declare function parseFloat(string: string): number; /** * Returns a Boolean value that indicates whether a value is the reserved value NaN (not a number). - * @param number A numeric value. + * @param any A value to be tested. */ -declare function isNaN(number: number): boolean; +declare function isNaN(testValue: any): boolean; /** * Determines whether a supplied number is finite.