Skip to content

Commit 724a2fd

Browse files
authored
Fix formatting issue (#260649)
Blocking hygiene in vscode-copilot-chat, I don't know why it wasn't an issue in this repo
1 parent 9d487b2 commit 724a2fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/typings/base-common.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ declare global {
2020

2121
// --- timeout / interval (available in all contexts, but different signatures in node.js vs web)
2222

23-
interface TimeoutHandle {readonly _: never; /* this is a trick that seems needed to prevent direct number assignment */}
23+
interface TimeoutHandle { readonly _: never; /* this is a trick that seems needed to prevent direct number assignment */ }
2424
type Timeout = TimeoutHandle;
2525
function setTimeout(handler: string | Function, timeout?: number, ...arguments: any[]): Timeout;
2626
function clearTimeout(timeout: Timeout | undefined): void;

0 commit comments

Comments
 (0)