E0245: missing body for TypeScript interface
TypeScript interfaces require a body, which must be a list of field and method
signatures surrounded by {
and }
. It is a syntax error to omit the body of a
interface:
To fix this error, write the body of the class, including {
and }
:
Alternatively, remove the stray ;
before {
:
Introduced in quick-lint-js version 2.6.0.