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
Expected behavior:
from VSCode(hover the variable), the type of the variables is { [name: string]: string; } Actual behavior:
from VSCode(hover the variable), the type of the variables is {}[]
Seems the feature is powered bu salsa from typescript, so commit this here.
The text was updated successfully, but these errors were encountered:
the issue is the index signature is not really part of the JSDoc schema. so it is not really expected here. probaly the correct syntax, which is not supported either, is {Object.<string, number>} as per http://usejsdoc.org/tags-type.html
TypeScript Version: 2.0.0 beta
Code
Expected behavior:
from VSCode(hover the variable), the type of the
variables
is{ [name: string]: string; }
Actual behavior:
from VSCode(hover the variable), the type of the
variables
is{}[]
Seems the feature is powered bu salsa from typescript, so commit this here.
The text was updated successfully, but these errors were encountered: