mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
Remove __domTypes namespace (#4698)
This commit is contained in:
parent
8b4508338b
commit
2af9f5f2cf
4 changed files with 170 additions and 212 deletions
11
cli/js/lib.deno.window.d.ts
vendored
11
cli/js/lib.deno.window.d.ts
vendored
|
@ -7,19 +7,20 @@
|
|||
/// <reference lib="deno.shared_globals" />
|
||||
/// <reference lib="esnext" />
|
||||
|
||||
declare interface Window extends WindowOrWorkerGlobalScope {
|
||||
window: Window & WindowOrWorkerGlobalScope & typeof globalThis;
|
||||
self: Window & WindowOrWorkerGlobalScope & typeof globalThis;
|
||||
declare interface Window {
|
||||
window: Window & typeof globalThis;
|
||||
self: Window & typeof globalThis;
|
||||
onload: Function | undefined;
|
||||
onunload: Function | undefined;
|
||||
location: Location;
|
||||
crypto: Crypto;
|
||||
close: () => void;
|
||||
closed: boolean;
|
||||
Deno: typeof Deno;
|
||||
}
|
||||
|
||||
declare const window: Window & WindowOrWorkerGlobalScope & typeof globalThis;
|
||||
declare const self: Window & WindowOrWorkerGlobalScope & typeof globalThis;
|
||||
declare const window: Window & typeof globalThis;
|
||||
declare const self: Window & typeof globalThis;
|
||||
declare const onload: Function | undefined;
|
||||
declare const onunload: Function | undefined;
|
||||
declare const crypto: Crypto;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue