0.1.24 #24

Merged
Thilawyn merged 8 commits from next into master 2024-05-13 01:25:26 +02:00
Showing only changes of commit 57cab6a29a - Show all commits

View File

@@ -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 }