TS6196
error TS6196: ‘
MyAbstractClass
‘ is declared but never used.
Broken Code ❌
1 |
|
Fixed Code ✔️
You have three possibilities to fix the broken code:
- Make use of
MyAbstractClass
in your application - Export
MyAbstractClass
- Set “noUnusedLocals” to
false
in your “tsconfig.json”
1 |
|