mini-effect
    Preparing search index...

    Interface MinEntriesIssue<TInput$1, TRequirement>Beta

    Min entries issue interface.

    interface MinEntriesIssue<
        TInput$1 extends EntriesInput,
        TRequirement extends number,
    > {
        abortEarly?: boolean;
        abortPipeEarly?: boolean;
        expected: `>=${TRequirement}`;
        input: TInput$1;
        issues?: [BaseIssue<TInput$1>, ...BaseIssue<TInput$1>[]];
        kind: "validation";
        lang?: string;
        message: string;
        path?: [IssuePathItem, ...IssuePathItem[]];
        received: `${number}`;
        requirement: TRequirement;
        type: "min_entries";
    }

    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: `>=${TRequirement}`

    The expected property.

    input: TInput$1

    The raw input data.

    The sub issues.

    kind: "validation"

    The issue kind.

    lang?: string

    The selected language.

    message: string

    The error message.

    The issue path.

    received: `${number}`

    The received property.

    requirement: TRequirement

    The minimum entries.

    type: "min_entries"

    The issue type.