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

    Type Alias NuclideDecayChainEntry<N>

    NuclideDecayChainEntry: Collection<
        {
            a: Distinct<number>;
            chainDepth: Distinct<number>;
            daughterChains: Distinct<NuclideDecayChainLink[]>;
            element: Distinct<ElementSymbol>;
            halfLife: Distinct<number | null>;
            isTerminal: Distinct<boolean>;
            n: Distinct<number>;
            nuclide: Distinct<N>;
            parentChains: Distinct<NuclideDecayChainLink[]>;
            stable: Distinct<boolean>;
            z: Distinct<number>;
        },
    >

    Detailed node in a radioactive decay chain, capturing parents and daughters.

    Type Parameters

    • N extends NuclideIdentifier

      The specific nuclide identifier type used as the key for the decay chain entries.