Interface ZodNotFiniteIssue

interface ZodNotFiniteIssue {
    code: "not_finite";
    message?: string;
    path: (string | number)[];
}

Hierarchy (View Summary)

Properties

Properties

code: "not_finite"
message?: string
path: (string | number)[]