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

    Type Alias CompositionCollection<D>

    CompositionCollection: Collection<
        {
            components: Distinct<
                D extends COMPOUND
                    ? StoichiometryComponent
                    : D extends MINERAL
                        ? StoichiometryComponent
                        | RangeComponent
                        : D extends MIXTURE ? FractionComponent : never,
            >[];
        },
    >

    Domain-specific collection of constituents forming a compound, mineral, or mixture.

    Type Parameters

    • D extends DomainType

      The scientific domain of the substance.