We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24141f0 commit c0db7ffCopy full SHA for c0db7ff
src/lib/core.d.ts
@@ -410,6 +410,9 @@ interface String {
410
*/
411
substr(from: number, length?: number): string;
412
413
+ /** Returns the primitive value of the specified object. */
414
+ valueOf(): string;
415
+
416
[index: number]: string;
417
}
418
@@ -462,6 +465,9 @@ interface Number {
462
465
* @param precision Number of significant digits. Must be in the range 1 - 21, inclusive.
463
466
464
467
toPrecision(precision?: number): string;
468
469
470
+ valueOf(): number;
471
472
473
interface NumberConstructor {
0 commit comments