// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
///
///
declare namespace globalThis {
declare namespace __bootstrap {
declare var eventTarget: {
EventTarget: typeof EventTarget;
};
declare var location: {
getLocationHref(): string | undefined;
};
declare var base64: {
byteLength(b64: string): number;
toByteArray(b64: string): Uint8Array;
fromByteArray(uint8: Uint8Array): string;
};
}
}