9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
import type { AbstractConstructor } from "type-fest"
|
|
|
|
|
|
/**
|
|
* Represents the static members of a class.
|
|
* @template C - A class.
|
|
*/
|
|
export type StaticType<C extends AbstractConstructor<any>> = Omit<C, "prototype">
|