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
If a class A inherits class B,
the resulting typescript classes will both have each a fromData method.
However, A, must have the keyword is missing the "override" keyword in order to be syntactically correct typescript.
If a class A inherits class B,
the resulting typescript classes will both have each a fromData method.
However, A, must have the keyword is missing the "override" keyword in order to be syntactically correct typescript.
wrong:
static fromData(data: FooBar, target?: FooBar): FooBar {
correct:
static override fromData(data: FooBar, target?: FooBar): FooBar {
The text was updated successfully, but these errors were encountered: