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>.
This commit is contained in:
Martin Probst 2015-06-11 09:44:04 -07:00
parent cdc7b03e67
commit 13466604f9
1 changed files with 2 additions and 0 deletions

View File

@ -29,3 +29,5 @@ interface BrowserNodeGlobal {
setInterval: Function;
clearInterval: Function;
}
declare var global: any;