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

    Type Alias TypeSlot

    Everything the hot path needs from a type-string slot ("string", "string?", "a|b", "a|b?"), resolved once at compile time.

    type TypeSlot = {
        description: string;
        isOptional: boolean;
        predicates: ((value: unknown) => boolean)[];
        types: string[];
        unknownType: string | null;
    }
    Index
    description: string

    Pre-rendered to be … fragment of the mismatch message.

    isOptional: boolean

    Whether the slot was marked optional with a trailing ?.

    predicates: ((value: unknown) => boolean)[]

    Boolean predicates for the type names up to the first unresolvable one.

    types: string[]

    The type names, in declaration order, with whitespace trimmed.

    unknownType: string | null

    First unresolvable type name, or null when every name resolved.