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
interface Foo { primeSeed?: 2 | 3 | 5 | 7 | 11 | 13; }
is converted to:
external interface Foo { var primeSeed: String? /* 2 | 3 | 5 | 7 | 11 | 13 */ get() = definedExternally set(value) = definedExternally }
while actually we expect Number
The text was updated successfully, but these errors were encountered:
Keep in mind that numeric literal is not necessarily integer
Sorry, something went wrong.
Numeric literals and their unions are resolved as number
2a543ca
this solves #273
No branches or pull requests
is converted to:
while actually we expect Number
The text was updated successfully, but these errors were encountered: