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
@observable
I have a:
I did a silly:
class MyStore { @observable public value: number; @observable // should have been @computed public get double() { return this.value * 2; } }
Should this produce an error? In practice, MyStore.prototype.timeSinceLastUpdated is undefined, as is all its instances.
MyStore.prototype.timeSinceLastUpdated
undefined
The text was updated successfully, but these errors were encountered:
It is not a supported case indeed, so a PR for runtime checks is welcome
Sorry, something went wrong.
Released in 4.2.1
No branches or pull requests
I have a:
I did a silly:
Should this produce an error? In practice,
MyStore.prototype.timeSinceLastUpdated
isundefined
, as is all its instances.The text was updated successfully, but these errors were encountered: