1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-28 16:20:57 -05:00
denoland-deno/op_crates/web/internal.d.ts

17 lines
377 B
TypeScript
Raw Permalink Normal View History

// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
/// <reference no-default-lib="true" />
/// <reference lib="esnext" />
declare namespace globalThis {
declare namespace __bootstrap {
declare var eventTarget: {
EventTarget: typeof EventTarget;
};
declare var location: {
getLocationHref(): string | undefined;
};
}
}