diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2020-03-24 20:56:40 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 23:56:40 -0400 |
commit | 5d7bcf86fdb2bfcee0bfac24aeb7aeecb8b3faca (patch) | |
tree | 07e3f9b315253c27924687100a6e1891768696dc /cli/js/lib.deno.window.d.ts | |
parent | 3938071e91e7c3dcf7b4e727601e1e99005aceab (diff) |
feat: window.close() (#4474)
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 737971d94..e4ab6b70d 100644 --- a/cli/js/lib.deno.window.d.ts +++ b/cli/js/lib.deno.window.d.ts @@ -13,6 +13,8 @@ declare interface Window extends WindowOrWorkerGlobalScope { onload: Function | undefined; onunload: Function | undefined; crypto: Crypto; + close: () => void; + closed: boolean; Deno: typeof Deno; } |