E0275: newline is not allowed after 'interface'
In TypeScript, the interface
keyword must be followed by the interface's name.
It is a syntax error to write a newline between interface
and the following
name:
To fix this error, put the interface's name on the same line as the interface
keyword:
Introduced in quick-lint-js version 2.8.0.