E0246: 'extends' must be before 'implements'
TypeScript classes can extend another class and implement interfaces. It is a syntax error to write the implemented interfaces before the extended class:
To fix this error, write the extends
clause before the implements
clause:
Introduced in quick-lint-js version 2.7.0.