mirror of
https://github.com/denoland/deno.git
synced 2025-09-26 12:19:12 +00:00
docs: ignore absent window global variable in d.ts (#28456)
This commit is contained in:
parent
5c8d894aa3
commit
f3e9325a91
1 changed files with 6 additions and 1 deletions
7
cli/tsc/dts/lib.deno.window.d.ts
vendored
7
cli/tsc/dts/lib.deno.window.d.ts
vendored
|
@ -77,7 +77,12 @@ declare var Window: {
|
|||
new (): never;
|
||||
};
|
||||
|
||||
/** @category Platform */
|
||||
/**
|
||||
* The window variable was removed in Deno 2. This declaration should be
|
||||
* removed at some point, but we're leaving it in out of caution.
|
||||
* @ignore
|
||||
* @category Platform
|
||||
*/
|
||||
declare var window: Window & typeof globalThis;
|
||||
/** @category Platform */
|
||||
declare var self: Window & typeof globalThis;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue