mini-effect
    Preparing search index...

    Interface PartialCheckIssue<TInput$1>

    Partial check issue interface.

    interface PartialCheckIssue<TInput$1 extends PartialInput> {
        abortEarly?: boolean;
        abortPipeEarly?: boolean;
        expected: null;
        input: TInput$1;
        issues?: [BaseIssue<TInput$1>, ...BaseIssue<TInput$1>[]];
        kind: "validation";
        lang?: string;
        message: string;
        path?: [IssuePathItem, ...IssuePathItem[]];
        received: string;
        requirement: (input: TInput$1) => MaybePromise<boolean>;
        type: "partial_check";
    }

    Type Parameters

    • TInput$1 extends PartialInput

    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

    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: string

    The received property.

    requirement: (input: TInput$1) => MaybePromise<boolean>

    The validation function.

    type: "partial_check"

    The issue type.