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
Type 'Promise<string>' is not assignable to type 'Promise<CompletionItem>'.
Type 'string' is not assignable to type 'CompletionItem'.
I believe the error comes from then selecting the incorrect overload during compilation. Changing the type to Promise.resolve(3) changes the error message to Type Promise<number> is not...
The text was updated successfully, but these errors were encountered:
From: microsoft/vscode#16819
TypeScript Version: 2.1.4-insiders.20161206
Code
Expected behavior:
No errors.
Actual behavior:
Error:
I believe the error comes from
then
selecting the incorrect overload during compilation. Changing the type toPromise.resolve(3)
changes the error message toType Promise<number> is not...
The text was updated successfully, but these errors were encountered: