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 37f27b1 commit 4a4cea5Copy full SHA for 4a4cea5
std/assembly/index.d.ts
@@ -1316,10 +1316,14 @@ declare class TypeError extends Error { }
1316
/** Class for indicating an error when trying to interpret syntactically invalid code. */
1317
declare class SyntaxError extends Error { }
1318
1319
-interface Boolean {}
+interface Boolean {
1320
+ toString(): string;
1321
+}
1322
interface Function {}
1323
interface IArguments {}
-interface Number {}
1324
+interface Number {
1325
+ toString(radix?: number): string;
1326
1327
interface Object {}
1328
interface RegExp {}
1329
0 commit comments