E0318: function overload signature cannot have generator '*'
In TypeScript, functions can have overload signatures. Overload signatures work
on generator functions, but it is a syntax error for an overload signature
itself to have the generator *
after the function
keyword:
To fix this error, remove the *
from the overload signatures, but keep it for
the implementation:
Introduced in quick-lint-js version 2.10.0.