mini-effect
    Preparing search index...

    Interface EmptyIssue<TInput$1>

    Empty issue interface.

    interface EmptyIssue<TInput$1 extends LengthInput> {
        abortEarly?: boolean;
        abortPipeEarly?: boolean;
        expected: "0";
        input: TInput$1;
        issues?: [BaseIssue<TInput$1>, ...BaseIssue<TInput$1>[]];
        kind: "validation";
        lang?: string;
        message: string;
        path?: [IssuePathItem, ...IssuePathItem[]];
        received: `${number}`;
        requirement?: unknown;
        type: "empty";
    }

    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: "0"

    The expected input.

    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 input.

    requirement?: unknown

    The input requirement.

    type: "empty"

    The issue type.