mini-effect
    Preparing search index...

    Interface GtValueIssue<TInput$1, TRequirement>

    Greater than value issue type.

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

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

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

    The received property.

    requirement: TRequirement

    The greater than value.

    type: "gt_value"

    The issue type.