TS2403
TS2403: Subsequent variable declarations must have the same type. Variable 'window' must be of type 'Window & typeof globalThis', but here has type 'any'.
Broken Code ❌
var window: any = window || null;Fixed Code ✔️
var window: Window & typeof globalThis = window || null;