/*
 * Copyright (C) 2025 Klaus Reimer <k@ailis.de>
 * See LICENSE.md for licensing information.
 */

/** Star types */
export type StarType
    = "A"
    | "A_BlueWhiteSuperGiant"
    | "AeBe"
    | "B"
    | "B_BlueWhiteSuperGiant"
    | "CN"
    | "D"
    | "DA"
    | "DAB"
    | "DAV"
    | "DAZ"
    | "DB"
    | "DBV"
    | "DC"
    | "DCV"
    | "DQ"
    | "F"
    | "F_WhiteSuperGiant"
    | "G"
    | "H"
    | "K"
    | "K_OrangeGiant"
    | "L"
    | "M"
    | "M_RedGiant"
    | "M_RedSuperGiant"
    | "MS"
    | "N"
    | "O"
    | "S"
    | "SupermassiveBlackHole"
    | "T"
    | "TTS"
    | "W"
    | "WC"
    | "WO"
    | "Y"
    ;
