Periodic Table Database Schema - v0.7.1
    Preparing search index...

    Type Alias CoupledValue<Q, P, S>

    CoupledValue: Expand<
        BaseValue<COUPLED> & {
            properties: RequireAtLeastOne<
                {
                    [K in Q]?: | PrimitiveValue<P>
                    | StructValue<S>
                    | SingleValue<K>
                    | ArrayValue<K>
                    | RangeValue<K>
                },
            >;
        },
    >

    General grouping of related properties of any data type.

    Type Parameters