E0263: only one comma is allowed between or after generic parameters
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 have doubled commas:
To fix this error, write a type variable name between the commas:
Alternatively, remove the extra comma:
Introduced in quick-lint-js version 2.8.0.