browser.d.ts 744 Bytes
/**
 * @license
 * Copyright Google Inc. All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */
/**
 * JS version of browser APIs. This library can only run in the browser.
 */
declare const win: any;
export { win as window };
export declare const document: any;
export declare const location: any;
export declare const gc: () => any;
export declare const performance: any;
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;