This commit is contained in:
Julien Valverdé
2024-06-12 02:16:23 +02:00
parent 0c8b9f3452
commit 1daa37faf4

View File

@@ -21,7 +21,7 @@ export function Mutable<
Constructor<
Omit<
InstanceType<This>,
keyof InstanceType<TMutableClass<Self, Fields, I, R, C, Inherited, Proto>>
keyof InstanceType<Class<Self, Fields, I, R, C, Inherited, Proto>>
> &
InstanceType<TMutableClass<Self, Fields, I, R, C, Inherited, Proto>>,
@@ -30,7 +30,7 @@ export function Mutable<
Omit<
StaticType<This>,
keyof StaticType<TMutableClass<Self, Fields, I, R, C, Inherited, Proto>>
keyof StaticType<Class<Self, Fields, I, R, C, Inherited, Proto>>
> &
StaticType<TMutableClass<Self, Fields, I, R, C, Inherited, Proto>>
)