5 lines
165 B
TypeScript
5 lines
165 B
TypeScript
/**
|
|
* Obtain the static members type of a constructor function type
|
|
*/
|
|
export type StaticType<T extends abstract new (...args: any) => any> = Omit<T, "prototype">
|