Refactoring
All checks were successful
Lint / lint (push) Successful in 11s

This commit is contained in:
Julien Valverdé
2024-07-29 18:14:38 +02:00
parent 2ad29a147b
commit 6b7e16ceab
27 changed files with 192 additions and 210 deletions

4
src/Types/StaticType.ts Normal file
View File

@@ -0,0 +1,4 @@
/**
* Obtain the static members type of a constructor function type
*/
export type StaticType<T extends abstract new (...args: any) => any> = Omit<T, "prototype">