File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,8 +12,6 @@ declare var WorkerGlobalScope: any /** TODO #9100 */;
1212// We don't want to include the whole node.d.ts this this compilation unit so we'll just fake
1313// the global "global" var for now.
1414declare var global : any /** TODO #9100 */ ;
15- // Not yet available in TypeScript: https://github.com/Microsoft/TypeScript/pull/29332
16- declare var globalThis : any /** TODO #9100 */ ;
1715
1816const __globalThis = typeof globalThis !== 'undefined' && globalThis ;
1917const __window = typeof window !== 'undefined' && window ;
Original file line number Diff line number Diff line change 88
99import { global } from '../../src/util/global' ;
1010
11- // Not yet available in TypeScript: https://github.com/Microsoft/TypeScript/pull/29332
12- declare var globalThis : any /** TODO #9100 */ ;
13-
1411{
1512 describe ( 'global' , ( ) => {
1613 it ( 'should be global this value' , ( ) => {
You can’t perform that action at this time.
0 commit comments