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

This commit is contained in:
Julien Valverdé
2024-01-17 18:48:37 +01:00
parent aef4d23b92
commit e1f7446b6d

View File

@@ -115,8 +115,8 @@ export function makeJsonifiableSchemableClass<
} as unknown as ( } as unknown as (
Class< Class<
InstanceType<C> & { InstanceType<C> & {
readonly jsonifySchema: typeof jsonifySchema, readonly jsonifySchema: z.ZodObject<JsonifySchemaT, JsonifySchemaUnknownKeys, JsonifySchemaCatchall, JsonifiedValues, Values>,
readonly dejsonifySchema: typeof dejsonifySchema, readonly dejsonifySchema: z.ZodObject<DejsonifySchemaT, DejsonifySchemaUnknownKeys, DejsonifySchemaCatchall, Values, JsonifiedValues>,
jsonify(): JsonifiedValues jsonify(): JsonifiedValues
jsonifyPromise(): Promise<JsonifiedValues> jsonifyPromise(): Promise<JsonifiedValues>
@@ -127,8 +127,8 @@ export function makeJsonifiableSchemableClass<
> & > &
StaticMembers<C> & { StaticMembers<C> & {
readonly jsonifySchema: typeof jsonifySchema, readonly jsonifySchema: z.ZodObject<JsonifySchemaT, JsonifySchemaUnknownKeys, JsonifySchemaCatchall, JsonifiedValues, Values>,
readonly dejsonifySchema: typeof dejsonifySchema, readonly dejsonifySchema: z.ZodObject<DejsonifySchemaT, DejsonifySchemaUnknownKeys, DejsonifySchemaCatchall, Values, JsonifiedValues>,
} }
) )
} }