We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While converting
declare var _: _.StaticInstance; export = _; declare module _ { type PropertyShorthand = string | number; interface StaticInstance { fetch<T>(param: _.PropertyShorthand): T[]; } }
StaticInstance converts to:
external interface StaticInstance { fun <T> fetch(param: `_`.PropertyShorthand): Array<T> }
While PropertyShorthand is (ha!) lost in translation.
The text was updated successfully, but these errors were encountered:
An other example, quite shameful one as well
declare module a { function ping(a: b.AlphaNumeric); } declare module b { type AlphaNumeric = string | number } export = a.ping
Sorry, something went wrong.
Use typeReferences for resolving cross-module aliases
ada9556
This contributes to #119
resolved in 0.0.19
No branches or pull requests
While converting
StaticInstance converts to:
While PropertyShorthand is (ha!) lost in translation.
The text was updated successfully, but these errors were encountered: