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