E0302: 'this' parameter not allowed when destructuring
TypeScript allows you to explicitly declare the this
parameter. It is a syntax
error to destructure the this
parameter or to include the this
parameter
when destructuring another parameter:
To fix this error, name the parameter something other than this
:
Introduced in quick-lint-js version 2.10.0.