interface-forge - v2.5.0
    Preparing search index...

    Interface $ZodIssueNotMultipleOf<Input>

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

    Type Parameters

    • Input extends number | bigint = number | bigint

    Hierarchy (View Summary)

    Index

    Properties

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