mini-effect
    Preparing search index...

    Interface CustomIssue

    Custom issue interface.

    interface CustomIssue {
        abortEarly?: boolean;
        abortPipeEarly?: boolean;
        expected: "unknown";
        input: unknown;
        issues?: [BaseIssue<unknown>, ...BaseIssue<unknown>[]];
        kind: "schema";
        lang?: string;
        message: string;
        path?: [IssuePathItem, ...IssuePathItem[]];
        received: string;
        requirement?: unknown;
        type: "custom";
    }

    Hierarchy (View Summary)

    Index

    Properties

    abortEarly?: boolean

    Whether it should be aborted early.

    abortPipeEarly?: boolean

    Whether a pipe should be aborted early.

    expected: "unknown"

    The expected property.

    input: unknown

    The raw input data.

    issues?: [BaseIssue<unknown>, ...BaseIssue<unknown>[]]

    The sub issues.

    kind: "schema"

    The issue kind.

    lang?: string

    The selected language.

    message: string

    The error message.

    The issue path.

    received: string

    The received property.

    requirement?: unknown

    The input requirement.

    type: "custom"

    The issue type.