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
TypeScript Version: 1.8.10
Code
export default new class Foo { @someDecorator someMethod() {} }
Will result in an error on @someDecorator:
@someDecorator
error TS1206: Decorators are not valid here.
It can be worked around via
class Foo { @someDecorator someMethod() {} } export default new Foo();
The text was updated successfully, but these errors were encountered:
duplicate of #7342
Sorry, something went wrong.
No branches or pull requests
TypeScript Version: 1.8.10
Code
Will result in an error on
@someDecorator
:It can be worked around via
The text was updated successfully, but these errors were encountered: