You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test.ts(4,7): error TS6133: 'this' is declared but never used.
test.ts(10,14): error TS6133: 'this' is declared but never used.
// test.tsclassA{constructor(privatea: number){}b(this: A): number{// error TS6133: 'this' is declared but never used.returnthis.a;}}functionbar(this: Window): string{// error TS6133: 'this' is declared but never used.returnwindow.location.href;}
HerringtonDarkholme, dsherret, zspitz, nycdotnet and petronetto