From 1daa37faf429c7a6064e8d36463243e7dbe4b25c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Wed, 12 Jun 2024 02:16:23 +0200 Subject: [PATCH] Fix --- src/effect/schema/class/Mutable.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/effect/schema/class/Mutable.ts b/src/effect/schema/class/Mutable.ts index 566a16f..f734bca 100644 --- a/src/effect/schema/class/Mutable.ts +++ b/src/effect/schema/class/Mutable.ts @@ -21,7 +21,7 @@ export function Mutable< Constructor< Omit< InstanceType, - keyof InstanceType> + keyof InstanceType> > & InstanceType>, @@ -30,7 +30,7 @@ export function Mutable< Omit< StaticType, - keyof StaticType> + keyof StaticType> > & StaticType> )