types-kit.class.md
September 4, 2023 ยท View on GitHub
Class type
Create a class type.
Signature:
export type Class<T, P extends unknown[] = unknown[]> = Constructor<T, P> & {
prototype: T
}
References: Constructor
September 4, 2023 ยท View on GitHub
Create a class type.
Signature:
export type Class<T, P extends unknown[] = unknown[]> = Constructor<T, P> & {
prototype: T
}
References: Constructor