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

    Interface $ZodCheckMultipleOfInternals<T>

    interface $ZodCheckMultipleOfInternals<
        T extends number
        | bigint = number | bigint,
    > {
        def: $ZodCheckMultipleOfDef<T>;
        issc: $ZodIssueNotMultipleOf;
        onattach: ((schema: $ZodType) => void)[];
        when?: (payload: ParsePayload) => boolean;
        check(payload: ParsePayload<T>): MaybeAsync<void>;
    }

    Type Parameters

    • T extends number | bigint = number | bigint

    Hierarchy (View Summary)

    Index

    Properties

    Methods

    Properties

    The set of issues this check might throw.

    onattach: ((schema: $ZodType) => void)[]
    when?: (payload: ParsePayload) => boolean

    Methods