E0216: TypeScript interface properties cannot be 'static'
TypeScript interfaces describe objects (instances), not classes. It is a syntax error to create a static (class) property in an interface:
To fix this error, make the property non-static and apply the interface to the class itself (not on instances):
Introduced in quick-lint-js version 2.6.0.