mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
161adfc51b
* split lib.deno_main.d.ts into: - lib.deno.shared_globals.d.ts - lib.deno.window.d.ts - lib.deno.worker.d.ts * remove no longer used libs: - lib.deno_main.d.ts - lib.deno_worker.d.ts * change module loading to use proper TS library for compilation * align to Worker API spec: - Worker.terminate() - self.close() - self.name
16 lines
378 B
Text
16 lines
378 B
Text
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
[WILDCARD]
|
|
|
|
declare namespace Deno {
|
|
[WILDCARD]
|
|
}
|
|
[WILDCARD]
|
|
declare interface WindowOrWorkerGlobalScope {
|
|
[WILDCARD]
|
|
declare interface Window extends WindowOrWorkerGlobalScope {
|
|
[WILDCARD]
|
|
Deno: typeof Deno;
|
|
}
|
|
|
|
declare const window: Window & WindowOrWorkerGlobalScope & typeof globalThis;
|
|
[WILDCARD]
|