Membrane React - v0.6.0
    Preparing search index...

    Interface $ZodIssueNotMultipleOf<Input>

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

    Type Parameters

    • Input extends number | bigint = number | bigint

    Hierarchy (View Summary)

    Index

    Properties

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