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
Add @blueprintjs/core and @types/node to the package.json on a typescript project.
Run tsc on the project.
Note that this project does not contain any components that explicitly extend AbstractComponent, nor does it call setTimeout in the source code. The bug is happening in the Blueprint module.
Actual behavior
Typescript compilation fails with the following error:
node_modules/@blueprintjs/core/src/common/abstractComponent.ts(46,30): error TS2345: Argument of type 'Timer' is not assignable to parameter of type 'number'.
Expected behavior
Compiles without errors.
The text was updated successfully, but these errors were encountered:
Bug report
Steps to reproduce
@blueprintjs/core
and@types/node
to thepackage.json
on a typescript project.tsc
on the project.Note that this project does not contain any components that explicitly extend
AbstractComponent
, nor does it callsetTimeout
in the source code. The bug is happening in the Blueprint module.Actual behavior
Typescript compilation fails with the following error:
Expected behavior
Compiles without errors.
The text was updated successfully, but these errors were encountered: