@illavv/run_typer - v4.1.0
    Preparing search index...

    Type Alias IssueMeta

    The extra detail a constraint issue can carry.

    Kept as a separate object so ValidationIssue's optional fields stay out of the positional argument list of every other issue.

    type IssueMeta = {
        maximum?: number;
        minimum?: number;
        value?: unknown;
    }
    Index
    maximum?: number

    The maximum the constraint allows, on a too_big issue.

    minimum?: number

    The minimum the constraint allows, on a too_small issue.

    value?: unknown

    The offending value. Sensitive — see ValidationIssue.value.