This commit is contained in:
@@ -12,8 +12,6 @@ export type CommonKeys<A, B> = Extract<keyof A, keyof B>
|
||||
* Represents the static members of a class.
|
||||
* @template Class - A class.
|
||||
*/
|
||||
export type StaticMembers<Class extends AbstractConstructor<any>> = (
|
||||
Omit<Class, "prototype">
|
||||
)
|
||||
export type StaticMembers<Class extends AbstractConstructor<any>> = Omit<Class, "prototype">
|
||||
|
||||
export function type<T>() { return {} as T }
|
||||
|
||||
Reference in New Issue
Block a user