swc/crates/swc_ecma_parser/tests/tsc/globalThisUnknownNoImplicitAny.ts

12 lines
171 B
TypeScript
Raw Normal View History

// @noImplicitAny: true
declare let win: Window & typeof globalThis;
// all accesses should be errors
win.hi
this.hi
globalThis.hi
win['hi']
this['hi']
globalThis['hi']