diff options
Diffstat (limited to 'cli/dts/lib.deno.window.d.ts')
-rw-r--r-- | cli/dts/lib.deno.window.d.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cli/dts/lib.deno.window.d.ts b/cli/dts/lib.deno.window.d.ts index 61c5abf8a..5c113cd0d 100644 --- a/cli/dts/lib.deno.window.d.ts +++ b/cli/dts/lib.deno.window.d.ts @@ -17,9 +17,9 @@ declare interface Window extends EventTarget { Deno: typeof Deno; } -declare const window: Window & typeof globalThis; -declare const self: Window & typeof globalThis; -declare const onload: ((this: Window, ev: Event) => any) | null; -declare const onunload: ((this: Window, ev: Event) => any) | null; +declare var window: Window & typeof globalThis; +declare var self: Window & typeof globalThis; +declare var onload: ((this: Window, ev: Event) => any) | null; +declare var onunload: ((this: Window, ev: Event) => any) | null; /* eslint-enable @typescript-eslint/no-explicit-any */ |