UNPKG

958 BJavaScriptView Raw
1/*tslint:disable */
2/**
3 * @license
4 * Copyright Google Inc. All Rights Reserved.
5 *
6 * Use of this source code is governed by an MIT-style license that can be
7 * found in the LICENSE file at https://angular.io/license
8 */
9/**
10 * JS version of browser APIs. This library can only run in the browser.
11 */
12var win = typeof window !== 'undefined' && window || {};
13export { win as window };
14export var document = win.document;
15export var location = win.location;
16export var gc = win['gc'] ? function () { return win['gc'](); } : function () { return null; };
17export var performance = win['performance'] ? win['performance'] : null;
18export var Event = win['Event'];
19export var MouseEvent = win['MouseEvent'];
20export var KeyboardEvent = win['KeyboardEvent'];
21export var EventTarget = win['EventTarget'];
22export var History = win['History'];
23export var Location = win['Location'];
24export var EventListener = win['EventListener'];
25//# sourceMappingURL=browser.js.map
\No newline at end of file