-
Notifications
You must be signed in to change notification settings - Fork 240
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Convert to ES6 Map #236
Comments
There is |
vojtechhabarta
added a commit
that referenced
this issue
Nov 22, 2018
Finally I returned to this issue and it is now possible to use generics in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I would like to convert a Java Map to an ES6 Map.
From Java:
public Map<String, Object> someMap;
To Typescript:
someMap: Map<string, any>;
instead of
someMap: { [index: string]: any };
Is this possible somehow?
The text was updated successfully, but these errors were encountered: