summaryrefslogtreecommitdiff
path: root/tests/types.out
blob: b07e107623ee3f351e635067bbeb2e11ff137331 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.

/// <reference no-default-lib="true" />
/// <reference lib="esnext" />

declare namespace Deno {
[WILDCARD]
}
[WILDCARD]
declare interface Window {
[WILDCARD]
  Deno: typeof Deno;
}

declare const window: Window;
[WILDCARD]