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

    Type Alias PrimitiveValue<T>

    PrimitiveValue: Expand<
        BaseValue<PRIMITIVE> & RequireExactlyOneFrom<
            ValueFields<never, T>,
            "value" | "values",
        >,
    >

    Represents a standard primitive value (string, number, boolean). Requires either a single value or an array of values.

    Type Parameters

    • T extends Primitive = Primitive

      The specific primitive type.