deno/cli/tests/types.out
2020-01-02 15:13:47 -05:00

15 lines
259 B
Plaintext

// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
[WILDCARD]
declare namespace Deno {
[WILDCARD]
}
[WILDCARD]
declare interface Window {
[WILDCARD]
Deno: typeof Deno;
}
declare const window: Window & typeof globalThis;
[WILDCARD]