bupkis
    Preparing search index...

    Interface $ZodIssueNotMultipleOf<Input>

    interface $ZodIssueNotMultipleOf<
        Input extends number
        | bigint = number | bigint,
    > {
        code: "not_multiple_of";
        divisor: number;
        input?: Input;
        path: PropertyKey[];
        message: string;
    }

    Type Parameters

    • Input extends number | bigint = number | bigint

    Hierarchy (View Summary)

    Index

    Properties

    code: "not_multiple_of"
    divisor: number
    input?: Input
    path: PropertyKey[]
    message: string