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

    Type Alias CoupledNumberValue<Q>

    CoupledNumberValue: Expand<
        BaseValue<COUPLED> & {
            properties: RequireAtLeastOne<
                { [K in Q]?: SingleValue<K>
                | ArrayValue<K>
                | RangeValue<K> },
            >;
        },
    >

    Represents multiple numeric physical quantities that are measured or defined together.

    Type Parameters