mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
feat: window.onunload (#3023)
This commit is contained in:
parent
d32f39f2ec
commit
c920c5f62a
9 changed files with 126 additions and 20 deletions
2
js/lib.deno_runtime.d.ts
vendored
2
js/lib.deno_runtime.d.ts
vendored
|
@ -1248,6 +1248,7 @@ declare interface Window {
|
|||
setInterval: typeof timers.setInterval;
|
||||
location: domTypes.Location;
|
||||
onload: Function | undefined;
|
||||
onunload: Function | undefined;
|
||||
crypto: Crypto;
|
||||
Blob: typeof blob.DenoBlob;
|
||||
File: domTypes.DomFileConstructor;
|
||||
|
@ -1294,6 +1295,7 @@ declare const setTimeout: typeof timers.setTimeout;
|
|||
declare const setInterval: typeof timers.setInterval;
|
||||
declare const location: domTypes.Location;
|
||||
declare const onload: Function | undefined;
|
||||
declare const onunload: Function | undefined;
|
||||
declare const crypto: Crypto;
|
||||
declare const Blob: typeof blob.DenoBlob;
|
||||
declare const File: domTypes.DomFileConstructor;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue