mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
16 lines
528 B
TypeScript
16 lines
528 B
TypeScript
/**
|
|
* JS version of browser APIs. This library can only run in the browser.
|
|
*/
|
|
var win = window;
|
|
|
|
export {win as window};
|
|
export var document = window.document;
|
|
export var location = window.location;
|
|
export var gc = window['gc'] ? () => window['gc']() : () => null;
|
|
export const Event = Event;
|
|
export const MouseEvent = MouseEvent;
|
|
export const KeyboardEvent = KeyboardEvent;
|
|
export const EventTarget = EventTarget;
|
|
export const History = History;
|
|
export const Location = Location;
|
|
export const EventListener = EventListener;
|