mini-effect
    Preparing search index...

    Interface CheckItemsIssue<TInput$1>

    Check items issue interface.

    interface CheckItemsIssue<TInput$1 extends ArrayInput> {
        abortEarly?: boolean;
        abortPipeEarly?: boolean;
        expected: null;
        input: TInput$1[number];
        issues?: [BaseIssue<TInput$1[number]>, ...BaseIssue<TInput$1[number]>[]];
        kind: "validation";
        lang?: string;
        message: string;
        path?: [IssuePathItem, ...IssuePathItem[]];
        received: string;
        requirement: ArrayRequirementAsync<TInput$1>;
        type: "check_items";
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    abortEarly?: boolean

    Whether it should be aborted early.

    abortPipeEarly?: boolean

    Whether a pipe should be aborted early.

    expected: null

    The expected input.

    input: TInput$1[number]

    The raw input data.

    issues?: [BaseIssue<TInput$1[number]>, ...BaseIssue<TInput$1[number]>[]]

    The sub issues.

    kind: "validation"

    The issue kind.

    lang?: string

    The selected language.

    message: string

    The error message.

    The issue path.

    received: string

    The received property.

    The validation function.

    type: "check_items"

    The issue type.