2018-07-23 14:46:30 -04:00
|
|
|
// Copyright 2018 the Deno authors. All rights reserved. MIT license.
|
2018-07-06 11:20:35 -04:00
|
|
|
|
2018-08-07 16:27:31 -04:00
|
|
|
import { Console } from "./console";
|
2018-08-09 15:17:08 -04:00
|
|
|
import * as timers from "./timers";
|
2018-09-01 10:45:26 -04:00
|
|
|
import * as textEncoding from "./text_encoding";
|
2018-08-15 20:57:36 -04:00
|
|
|
import * as fetch_ from "./fetch";
|
2018-08-25 15:42:49 -04:00
|
|
|
import { libdeno } from "./libdeno";
|
2018-10-03 21:41:59 -04:00
|
|
|
import { globalEval } from "./global_eval";
|
2018-09-12 15:16:42 -04:00
|
|
|
import { DenoHeaders } from "./fetch";
|
2018-09-14 08:45:50 -04:00
|
|
|
import { DenoBlob } from "./blob";
|
2018-08-07 16:27:31 -04:00
|
|
|
|
|
|
|
declare global {
|
|
|
|
interface Window {
|
2018-08-22 17:17:26 -04:00
|
|
|
define: Readonly<unknown>;
|
2018-09-10 06:27:08 -04:00
|
|
|
|
|
|
|
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;
|
2018-09-20 18:53:29 -04:00
|
|
|
atob: typeof atob;
|
|
|
|
btoa: typeof btoa;
|
2018-09-12 15:16:42 -04:00
|
|
|
|
|
|
|
Headers: typeof Headers;
|
2018-09-14 08:45:50 -04:00
|
|
|
Blob: typeof Blob;
|
2018-08-07 16:27:31 -04:00
|
|
|
}
|
|
|
|
|
2018-08-09 15:17:08 -04:00
|
|
|
const clearTimeout: typeof timers.clearTimer;
|
|
|
|
const clearInterval: typeof timers.clearTimer;
|
|
|
|
const setTimeout: typeof timers.setTimeout;
|
|
|
|
const setInterval: typeof timers.setInterval;
|
|
|
|
|
2018-08-07 16:27:31 -04:00
|
|
|
const console: Console;
|
|
|
|
const window: Window;
|
2018-08-09 13:24:03 -04:00
|
|
|
|
2018-08-15 20:57:36 -04:00
|
|
|
const fetch: typeof fetch_.fetch;
|
|
|
|
|
2018-08-09 13:24:03 -04:00
|
|
|
// tslint:disable:variable-name
|
2018-09-10 06:27:08 -04:00
|
|
|
const TextEncoder: typeof textEncoding.TextEncoder;
|
|
|
|
const TextDecoder: typeof textEncoding.TextDecoder;
|
2018-09-20 18:53:29 -04:00
|
|
|
const atob: typeof textEncoding.atob;
|
|
|
|
const btoa: typeof textEncoding.btoa;
|
2018-09-12 15:16:42 -04:00
|
|
|
const Headers: typeof DenoHeaders;
|
2018-09-14 08:45:50 -04:00
|
|
|
const Blob: typeof DenoBlob;
|
2018-08-09 13:24:03 -04:00
|
|
|
// tslint:enable:variable-name
|
2018-08-07 16:27:31 -04:00
|
|
|
}
|
|
|
|
|
2018-07-06 11:20:35 -04:00
|
|
|
// A reference to the global object.
|
2018-07-06 11:27:36 -04:00
|
|
|
export const window = globalEval("this");
|
2018-08-06 18:37:32 -04:00
|
|
|
window.window = window;
|
|
|
|
|
2018-08-09 15:17:08 -04:00
|
|
|
window.setTimeout = timers.setTimeout;
|
|
|
|
window.setInterval = timers.setInterval;
|
|
|
|
window.clearTimeout = timers.clearTimer;
|
|
|
|
window.clearInterval = timers.clearTimer;
|
2018-07-06 11:20:35 -04:00
|
|
|
|
2018-08-06 18:37:32 -04:00
|
|
|
window.console = new Console(libdeno.print);
|
2018-09-01 10:45:26 -04:00
|
|
|
window.TextEncoder = textEncoding.TextEncoder;
|
|
|
|
window.TextDecoder = textEncoding.TextDecoder;
|
2018-09-20 18:53:29 -04:00
|
|
|
window.atob = textEncoding.atob;
|
|
|
|
window.btoa = textEncoding.btoa;
|
2018-07-06 11:20:35 -04:00
|
|
|
|
2018-08-15 20:57:36 -04:00
|
|
|
window.fetch = fetch_.fetch;
|
2018-09-12 15:16:42 -04:00
|
|
|
|
|
|
|
window.Headers = DenoHeaders;
|
2018-09-14 08:45:50 -04:00
|
|
|
window.Blob = DenoBlob;
|