MobXObservableZodSchemaObject
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Julien Valverdé
2024-02-25 05:49:50 +01:00
parent 93edcde258
commit 8ca2805f4f
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ import { makeObservable, observable } from "mobx"
import { z } from "zod"
export const ObservableZodSchemaObject = trait
export const MobXObservableZodSchemaObject = trait
.staticAbstract(Super => class extends Super {
declare readonly schema: z.ZodObject<z.ZodRawShape, z.UnknownKeysParam, z.ZodTypeAny, object, object>
})