2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-08-30 11:11:33 -04:00
|
|
|
[WILDCARD]
|
2019-02-13 02:08:56 +11:00
|
|
|
|
|
|
|
declare namespace Deno {
|
2018-11-05 06:52:31 +11:00
|
|
|
[WILDCARD]
|
|
|
|
}
|
2019-02-13 02:08:56 +11:00
|
|
|
[WILDCARD]
|
2020-01-29 18:54:23 +01:00
|
|
|
declare interface WindowOrWorkerGlobalScope {
|
|
|
|
[WILDCARD]
|
|
|
|
declare interface Window extends WindowOrWorkerGlobalScope {
|
2018-11-05 06:52:31 +11:00
|
|
|
[WILDCARD]
|
2019-02-13 02:08:56 +11:00
|
|
|
Deno: typeof Deno;
|
2018-11-05 06:52:31 +11:00
|
|
|
}
|
|
|
|
|
2020-01-29 18:54:23 +01:00
|
|
|
declare const window: Window & WindowOrWorkerGlobalScope & typeof globalThis;
|
2018-11-05 06:52:31 +11:00
|
|
|
[WILDCARD]
|