Fix
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Julien Valverdé
2024-05-12 23:03:56 +02:00
parent b3bb310df3
commit 57cab6a29a

View File

@@ -12,8 +12,6 @@ export type CommonKeys<A, B> = Extract<keyof A, keyof B>
* Represents the static members of a class. * Represents the static members of a class.
* @template Class - A class. * @template Class - A class.
*/ */
export type StaticMembers<Class extends AbstractConstructor<any>> = ( export type StaticMembers<Class extends AbstractConstructor<any>> = Omit<Class, "prototype">
Omit<Class, "prototype">
)
export function type<T>() { return {} as T } export function type<T>() { return {} as T }