@metreeca/qest - v0.9.2
    Preparing search index...

    Type Alias Indexed<T>

    Indexed: { readonly [key: string]: T }

    Key-indexed container for property values.

    Maps arbitrary Identifier keys to values of type T, supporting index-based organisation of property values. Useful for representing union-typed properties or dynamically-keyed structures.

    Type Parameters

    • T

      The type of values in the container

    • Corresponds to JSON-LD's @index container semantics; requires @context to distinguish from nested resources
    • Keys are limited to valid JavaScript identifiers
    • Allowed only as top-level property values; no nesting
    const variants: Indexed<number> = {
    small: 19.99,
    medium: 29.99,
    large: 39.99
    };