mini-effect
    Preparing search index...

    Interface GraphemesIssue<TInput$1, TRequirement>

    Graphemes issue interface.

    interface GraphemesIssue<TInput$1 extends string, 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: "graphemes";
    }

    Type Parameters

    • TInput$1 extends string
    • TRequirement extends number

    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 required graphemes.

    type: "graphemes"

    The issue type.