angular2
Version:
Angular 2 - a web framework for modern web apps
17 lines (16 loc) • 568 B
TypeScript
/**
* JS version of browser APIs. This library can only run in the browser.
*/
declare var win: Window;
export { win as window };
export declare var document: Document;
export declare var location: Location;
export declare var gc: () => any;
export declare var performance: Performance;
export declare const Event: any;
export declare const MouseEvent: any;
export declare const KeyboardEvent: any;
export declare const EventTarget: any;
export declare const History: any;
export declare const Location: any;
export declare const EventListener: any;