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
In the Playground,
function makeFn => x: 1, y:1
compiles to
function makeFn() { return () => {x: 1, y:1} }
but the latter does not compile as TypeScript (or JavaScript, unless I am mistaken). I believe it needs to be
function makeFn() { return () => ({x: 1, y:1}) }
The text was updated successfully, but these errors were encountered:
62959d9
Merge pull request #802 from DanielXMoore/705
38b658b
Fix #705
No branches or pull requests
In the Playground,
compiles to
but the latter does not compile as TypeScript (or JavaScript, unless I am mistaken). I believe it needs to be
The text was updated successfully, but these errors were encountered: