0.1.3 #3

Merged
Thilawyn merged 17 commits from next into master 2024-02-08 20:01:17 +01:00
Showing only changes of commit da17765276 - Show all commits

View File

@@ -1,5 +1,6 @@
import { Fn, Pipe, Tuples } from "hotscript"
import { AbstractClass, Class, Opaque, UnwrapOpaque } from "type-fest"
import { AbstractClass, Class, Opaque } from "type-fest"
import { tag } from "type-fest/source/opaque"
import { AbstractTag, TraitExpression, emptyTraitExpression } from "."
import { ExtendFn, SimplifyFn, StaticMembers, StaticMembersFn } from "./util"
@@ -23,7 +24,7 @@ export type RemoveAbstractFromImplClass<
Omit<InstanceType<ImplClassWithAbstract>, keyof Abstract>,
ConstructorParameters<ImplClassWithAbstract>
> &
UnwrapOpaque<StaticMembers<ImplClassWithAbstract>>
Omit<StaticMembers<ImplClassWithAbstract>, typeof tag>
)