Effect schema inheritance fix
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -33,7 +33,15 @@ implements TraitExpressionLike<
|
|||||||
extends<Self>(): (
|
extends<Self>(): (
|
||||||
AbstractConstructor<
|
AbstractConstructor<
|
||||||
ApplyMutability<S.Struct.Type<Fields>, Mutability> &
|
ApplyMutability<S.Struct.Type<Fields>, Mutability> &
|
||||||
Omit<Inherited, keyof Fields> &
|
Omit<
|
||||||
|
Simplify<
|
||||||
|
Extend<[
|
||||||
|
Inherited,
|
||||||
|
...TraitTuple.MapImplInstance<Traits>
|
||||||
|
]>
|
||||||
|
>,
|
||||||
|
keyof Fields
|
||||||
|
> &
|
||||||
Proto,
|
Proto,
|
||||||
|
|
||||||
ConstructorParameters<S.Class<unknown, Fields, I, R, C, Inherited, Proto>>
|
ConstructorParameters<S.Class<unknown, Fields, I, R, C, Inherited, Proto>>
|
||||||
@@ -45,12 +53,7 @@ implements TraitExpressionLike<
|
|||||||
Fields,
|
Fields,
|
||||||
ApplyMutability<I, EncodedMutability>,
|
ApplyMutability<I, EncodedMutability>,
|
||||||
R, C,
|
R, C,
|
||||||
Simplify<
|
|
||||||
Extend<[
|
|
||||||
Inherited,
|
Inherited,
|
||||||
...TraitTuple.MapImplInstance<Traits>
|
|
||||||
]>
|
|
||||||
>,
|
|
||||||
Proto
|
Proto
|
||||||
>
|
>
|
||||||
> &
|
> &
|
||||||
|
|||||||
Reference in New Issue
Block a user