angular2-google-maps
Version:
Angular 2 components for Google Maps
14 lines • 466 B
JavaScript
export var WindowRef = (function () {
function WindowRef() {
}
WindowRef.prototype.getNativeWindow = function () { return window; };
return WindowRef;
}());
export var DocumentRef = (function () {
function DocumentRef() {
}
DocumentRef.prototype.getNativeDocument = function () { return document; };
return DocumentRef;
}());
export var BROWSER_GLOBALS_PROVIDERS = [WindowRef, DocumentRef];
//# sourceMappingURL=browser-globals.js.map