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);
}> = ...

Schema for a serializable object that includes methods for converting to and from JSON.

Type declaration

  • fromJSON: ZodType<((this, ...args) => any), ZodTypeDef, ((this, ...args) => any)>

    Creates a new instance of this class based on the given JSON.

    Param

    Any

  • toJSON: ZodType<((this) => any), ZodTypeDef, ((this) => any)>

    Returns a JSON representation of this class.

Type declaration

  • fromJSON: ((this, ...args) => any)
      • (this, ...args): any
      • Creates a new instance of this class based on the given JSON.

        Parameters

        • this: void
        • Rest ...args: any[]

          Any

        Returns any

  • toJSON: ((this) => any)
      • (this): any
      • Returns a JSON representation of this class.

        Parameters

        • this: void

        Returns any

Type declaration

  • fromJSON: ((this, ...args) => any)
      • (this, ...args): any
      • Creates a new instance of this class based on the given JSON.

        Parameters

        • this: void
        • Rest ...args: any[]

          Any

        Returns any

  • toJSON: ((this) => any)
      • (this): any
      • Returns a JSON representation of this class.

        Parameters

        • this: void

        Returns any

Generated using TypeDoc