Variable SerializableObjectSchemaConst
SerializableObjectSchema: ZodObject<{
fromJSON: ZodType<((this, ...args) => any), ZodTypeDef, ((this, ...args) => any)>;
toJSON: ZodType<((this) => any), ZodTypeDef, ((this) => any)>;
}, "strip", ZodTypeAny, {
fromJSON: ((this, ...args) => any);
toJSON: ((this) => any);
}, {
fromJSON: ((this, ...args) => any);
toJSON: ((this) => any);
}> = ...
Type declaration
-
fromJSON: ZodType<((this, ...args) => any), ZodTypeDef, ((this, ...args) => any)>
-
toJSON: ZodType<((this) => any), ZodTypeDef, ((this) => any)>
Type declaration
-
fromJSON: ((this, ...args) => any)
-
- (this, ...args): any
-
Parameters
-
this: void
-
Rest
...args: any[]
Returns any
-
toJSON: ((this) => any)
Type declaration
-
fromJSON: ((this, ...args) => any)
-
- (this, ...args): any
-
Parameters
-
this: void
-
Rest
...args: any[]
Returns any
-
toJSON: ((this) => any)
Schema for a serializable object that includes methods for converting to and from JSON.