swc/crates/swc_ecma_parser/tests/tsc/globalThisUnknown.ts
2022-02-04 17:08:38 +09:00

14 lines
245 B
TypeScript

declare let win: Window & typeof globalThis;
// this access should be an error
win.hi
// these two should be fine, with type any
this.hi
globalThis.hi
// element access is always ok without noImplicitAny
win['hi']
this['hi']
globalThis['hi']