summaryrefslogtreecommitdiff
path: root/js/globals.ts
blob: 912af7dc4ef6732bbbb0b5709ee502aad4e0e362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright 2018 the Deno authors. All rights reserved. MIT license.

import { Console } from "./console";
import * as timers from "./timers";
import * as textEncoding from "./text_encoding";
import * as fetch_ from "./fetch";
import { libdeno } from "./libdeno";
import { globalEval } from "./global-eval";
import { DenoHeaders } from "./fetch";
import { DenoBlob } from "./blob";

declare global {
  interface Window {
    define: Readonly<unknown>;

    clearTimeout: typeof clearTimeout;
    clearInterval: typeof clearInterval;
    setTimeout: typeof setTimeout;
    setInterval: typeof setInterval;

    console: typeof console;
    window: typeof window;

    fetch: typeof fetch;

    TextEncoder: typeof TextEncoder;
    TextDecoder: typeof TextDecoder;

    Headers: typeof Headers;
    Blob: typeof Blob;
  }

  const clearTimeout: typeof timers.clearTimer;
  const clearInterval: typeof timers.clearTimer;
  const setTimeout: typeof timers.setTimeout;
  const setInterval: typeof timers.setInterval;

  const console: Console;
  const window: Window;

  const fetch: typeof fetch_.fetch;

  // tslint:disable:variable-name
  const TextEncoder: typeof textEncoding.TextEncoder;
  const TextDecoder: typeof textEncoding.TextDecoder;
  const Headers: typeof DenoHeaders;
  const Blob: typeof DenoBlob;
  // tslint:enable:variable-name
}

// A reference to the global object.
export const window = globalEval("this");
window.window = window;

window.libdeno = null;

window.setTimeout = timers.setTimeout;
window.setInterval = timers.setInterval;
window.clearTimeout = timers.clearTimer;
window.clearInterval = timers.clearTimer;

window.console = new Console(libdeno.print);
window.TextEncoder = textEncoding.TextEncoder;
window.TextDecoder = textEncoding.TextDecoder;

window.fetch = fetch_.fetch;

window.Headers = DenoHeaders;
window.Blob = DenoBlob;