You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To support ES class instance fields, TypeScript introduced a new declare prop: T; syntax to declare a property on a derived class without using Define semantics to override it.
We need to make sure that we correctly handle the declare modifier on property declarations.
The text was updated successfully, but these errors were encountered:
To support ES class instance fields, TypeScript introduced a new
declare prop: T;
syntax to declare a property on a derived class without using Define semantics to override it.We need to make sure that we correctly handle the
declare
modifier on property declarations.The text was updated successfully, but these errors were encountered: