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-12 10:08:56 -05:00
|
|
|
|
|
|
|
declare namespace Deno {
|
2018-11-04 14:52:31 -05:00
|
|
|
[WILDCARD]
|
|
|
|
}
|
2019-02-12 10:08:56 -05:00
|
|
|
[WILDCARD]
|
2020-01-29 12:54:23 -05:00
|
|
|
declare interface WindowOrWorkerGlobalScope {
|
|
|
|
[WILDCARD]
|
|
|
|
declare interface Window extends WindowOrWorkerGlobalScope {
|
2018-11-04 14:52:31 -05:00
|
|
|
[WILDCARD]
|
2019-02-12 10:08:56 -05:00
|
|
|
Deno: typeof Deno;
|
2018-11-04 14:52:31 -05:00
|
|
|
}
|
|
|
|
|
2020-01-29 12:54:23 -05:00
|
|
|
declare const window: Window & WindowOrWorkerGlobalScope & typeof globalThis;
|
2018-11-04 14:52:31 -05:00
|
|
|
[WILDCARD]
|