-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Closed
Labels
Domain: lib.d.tsThe issue relates to the different libraries shipped with TypeScriptThe issue relates to the different libraries shipped with TypeScriptWorking as IntendedThe behavior described is the intended behavior; this is not a bugThe behavior described is the intended behavior; this is not a bug
Description
TypeScript Version:
1.8.10
Code
window.Math.round(1.35);
Expected behavior:
compiled
Actual behavior:
error TS2339: Property 'Math' does not exist on type 'Window'
PS: Math.round(1.35)
works as expected, but I want to access it from window
in order to be able to mock this method in Angular unit tests by mocking $window
service.
Metadata
Metadata
Assignees
Labels
Domain: lib.d.tsThe issue relates to the different libraries shipped with TypeScriptThe issue relates to the different libraries shipped with TypeScriptWorking as IntendedThe behavior described is the intended behavior; this is not a bugThe behavior described is the intended behavior; this is not a bug