UNPKG

529 BJavaScriptView Raw
1"use strict";
2var WindowRef = (function () {
3 function WindowRef() {
4 }
5 WindowRef.prototype.getNativeWindow = function () { return window; };
6 return WindowRef;
7}());
8exports.WindowRef = WindowRef;
9var DocumentRef = (function () {
10 function DocumentRef() {
11 }
12 DocumentRef.prototype.getNativeDocument = function () { return document; };
13 return DocumentRef;
14}());
15exports.DocumentRef = DocumentRef;
16exports.BROWSER_GLOBALS_PROVIDERS = [WindowRef, DocumentRef];
17//# sourceMappingURL=browser-globals.js.map
\No newline at end of file