X Tutup
Skip to content

Commit 1346660

Browse files
committed
fix: declare var global.
This is required as otherwise our code ends up with an undeclared symbol in `global`. It declares it to the same type as it'd have in nodejs, <any>.
1 parent cdc7b03 commit 1346660

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

modules/angular2/globals.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,5 @@ interface BrowserNodeGlobal {
2929
setInterval: Function;
3030
clearInterval: Function;
3131
}
32+
33+
declare var global: any;

0 commit comments

Comments
 (0)
X Tutup