Working with this Types in Classes
class OptionBuilder<T = string | number | boolean> {
// ...
add(name: string, value: T): this {
this.#options.set(name, value);
return this;
}
}
class OptionBuilder<T = string | number | boolean> {
// ...
add(name: string, value: T): this {
this.#options.set(name, value);
return this;
}
}