diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-02-26 11:49:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-26 11:49:38 +0100 |
commit | 0e37184ca8084c257948d466c066fdb875ee44f3 (patch) | |
tree | ff7b01248d5e14987e0a9f8046029461f975d793 /cli/js/lib.deno.window.d.ts | |
parent | 5946808f66aab1983ade3db2541734bb43626a72 (diff) |
add window.self read-only property (#4131)
Diffstat (limited to 'cli/js/lib.deno.window.d.ts')
-rw-r--r-- | cli/js/lib.deno.window.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/js/lib.deno.window.d.ts b/cli/js/lib.deno.window.d.ts index 2c6228919..737971d94 100644 --- a/cli/js/lib.deno.window.d.ts +++ b/cli/js/lib.deno.window.d.ts @@ -9,6 +9,7 @@ declare interface Window extends WindowOrWorkerGlobalScope { window: Window & WindowOrWorkerGlobalScope & typeof globalThis; + self: Window & WindowOrWorkerGlobalScope & typeof globalThis; onload: Function | undefined; onunload: Function | undefined; crypto: Crypto; @@ -16,6 +17,7 @@ declare interface Window extends WindowOrWorkerGlobalScope { } declare const window: Window & WindowOrWorkerGlobalScope & typeof globalThis; +declare const self: Window & WindowOrWorkerGlobalScope & typeof globalThis; declare const onload: Function | undefined; declare const onunload: Function | undefined; declare const crypto: Crypto; |