E0221: TypeScript interface fields cannot be initalized
TypeScript interfaces describe the properties of objects, but do not describe
default values for those properties. It is a syntax error to initialize a
property with =
in an interface:
To fix this error, convert the interface into an abstract base class:
Alternatively, remove the initializer from the interface, making sure to initialize in implementing classes:
Introduced in quick-lint-js version 2.6.0.