When writing an index signature, there must be exactly one parameter which is not a rest parameter:
interface A {
[...index: string]: boolean;
}
Fix: Remove the ellipsis.
To fix the error, just remove the ellipsis token (...
):
interface A {
[index: string]: boolean;
}
If you meant to state that the describes a function, use parenthesis rather than brackets:
interface A {
(...args: string[]): boolean;
}