Files
thilalib/src/Types/StaticType.ts
Julien Valverdé 6b7e16ceab
All checks were successful
Lint / lint (push) Successful in 11s
Refactoring
2024-07-29 18:14:38 +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">