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
Hi,
The following valid js code compile with TS2362 error
letstart=newDate();letelapsed=newDate()-start;
index.ts(9,22): error TS2362: The left-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.
index.ts(9,37): error TS2363: The right-hand side of an arithmetic operation must be of type 'any', 'number' or an enum type.
To avoid the error i need to explicitely cast opreands wit <any>.
The text was updated successfully, but these errors were encountered:
Hi,
The following valid js code compile with TS2362 error
To avoid the error i need to explicitely cast opreands wit
<any>
.The text was updated successfully, but these errors were encountered: