Generic type variables
The `CommonErrors` generic type variables
CommonErrors<Id>
CommonErrors<Id>abstract class CommonErrors<
Id extends string // <--- Declare generic type variable Id.
> {
constructor(
...id: Id[] // <--- Capture generic type variable Id.
) {
Array.isArray(id) && (this.#id = new Set(id));
}
}Last updated