E0247: TypeScript 'implements' is not allowed in JavaScript
TypeScript interfaces are not supported in JavaScript. Therefore, using
implements
on a JavaScript class is a syntax error:
To fix this error, remove the implements
clause:
Alternatively, replace implements
with extends
to inherit a class:
Introduced in quick-lint-js version 2.7.0.
Documentation for other errors