UNPKG

270 BPlain TextView Raw
1import {Provider} from '@angular/core';
2
3export class WindowRef {
4 getNativeWindow(): any { return window; }
5}
6
7export class DocumentRef {
8 getNativeDocument(): any { return document; }
9}
10
11export const BROWSER_GLOBALS_PROVIDERS: Provider[] = [WindowRef, DocumentRef];