0.1.1 #2

Merged
Thilawyn merged 47 commits from next into master 2024-01-17 20:47:13 +01:00
Showing only changes of commit e1f7446b6d - Show all commits

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>,
} }
) )
} }