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
This is useful with TS tooling because it can detect errors like this:
classBase{methodRenamed(){...}}classFooextendsBase{overridemethod(){...}// This member cannot have an 'override' modifier because it is not declared in the base class 'Base'.}
otherwise method in Foo would silently pass along as a new method with no hint that it should be re-named.