TS6196
'MyAbstractClass' is declared but never used.
Broken Code ❌
abstract class MyAbstractClass {
abstract getResult(): boolean;
}Fixed Code ✔️
You have three possibilities to fix the broken code:
- Make use of
MyAbstractClassin your application - Export
MyAbstractClass - Set "noUnusedLocals" to
falsein your "tsconfig.json"
export abstract class MyAbstractClass {
abstract getResult(): boolean;
}