TS4112
This member cannot have an 'override' modifier because its containing class does not extend another class.
Broken Code ❌
class Cat {
override makeNoise(): string {
return 'Meow!';
}
}Fixed Code ✔️
class Cat {
makeNoise(): string {
return 'Meow!';
}
}