mirror of
https://github.com/swc-project/swc.git
synced 2024-12-18 11:11:30 +03:00
14 lines
245 B
TypeScript
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']
|
|
|