interface ZodCustomIssue {
    code: "custom";
    message?: string;
    params?: {
        [k: string]: any;
    };
    path: (string | number)[];
}

Hierarchy-Diagram

UML class diagram of ZodCustomIssue
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property

Hierarchy (view full)

Properties

code: "custom"
message?: string
params?: {
    [k: string]: any;
}

Type declaration

  • [k: string]: any
path: (string | number)[]