Files
thilalib/src/StaticType.ts
Julien Valverdé 6de0fd0c53
All checks were successful
Lint / lint (push) Successful in 10s
StaticType fix
2024-06-18 02:43:52 +02:00

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">