@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
46 lines (44 loc) • 650 B
text/typescript
/*
* 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"
;