This commit is contained in:
@@ -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>,
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user