mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
feat: window.close() (#4474)
This commit is contained in:
parent
3938071e91
commit
5d7bcf86fd
6 changed files with 65 additions and 1 deletions
2
cli/js/lib.deno.window.d.ts
vendored
2
cli/js/lib.deno.window.d.ts
vendored
|
@ -13,6 +13,8 @@ declare interface Window extends WindowOrWorkerGlobalScope {
|
|||
onload: Function | undefined;
|
||||
onunload: Function | undefined;
|
||||
crypto: Crypto;
|
||||
close: () => void;
|
||||
closed: boolean;
|
||||
Deno: typeof Deno;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue