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 9d487b2 commit 724a2fdCopy full SHA for 724a2fd
src/typings/base-common.d.ts
@@ -20,7 +20,7 @@ declare global {
20
21
// --- timeout / interval (available in all contexts, but different signatures in node.js vs web)
22
23
- interface TimeoutHandle {readonly _: never; /* this is a trick that seems needed to prevent direct number assignment */}
+ interface TimeoutHandle { readonly _: never; /* this is a trick that seems needed to prevent direct number assignment */ }
24
type Timeout = TimeoutHandle;
25
function setTimeout(handler: string | Function, timeout?: number, ...arguments: any[]): Timeout;
26
function clearTimeout(timeout: Timeout | undefined): void;
0 commit comments