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