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
TS file method with datatype in function doesn't work.
myFunction inside somefile.ts, which is rewired Doesn't work
function myFunction(a: number, b: number) { return a + b; }
Error thrown: SyntaxError: Unexpected token ':'
Works
function myFunction(a, b) { return a + b; }
The text was updated successfully, but these errors were encountered:
There are some workarounds in #185
Sorry, something went wrong.
should be fixed in v7 - TS support added here: #204
No branches or pull requests
TS file method with datatype in function doesn't work.
myFunction inside somefile.ts, which is rewired
Doesn't work
Error thrown: SyntaxError: Unexpected token ':'
Works
The text was updated successfully, but these errors were encountered: