E0264: expected at least one parameter in generic parameter list
In a TypeScript generic class, function, or type alias, the generic parameter
list is a comma-separated list of variables surrounded by <
and >
. It is a
syntax error for the parameter list to be empty:
To fix this error, remove <
and >
:
Alternatively, write a type variable name inside the brackets:
Introduced in quick-lint-js version 2.8.0.