UNPKG

@kayahr/ed-journal

Version:

Typescript library to read/watch the player journal of Frontier's game Elite Dangerous

10 lines (9 loc) 1.01 kB
/** The station services. */ export type StationService = "dock" | "autodock" | "blackmarket" | "commodities" | "contacts" | "exploration" | "missions" | "outfitting" | "crewlounge" | "rearm" | "refuel" | "repair" | "shipyard" | "tuning" | "engineer" | "missionsgenerated" | "facilitator" | "flightcontroller" | "stationoperations" | "ondockmission" | "powerplay" | "searchrescue" | "materialtrader" | "techBroker" | "stationMenu" | "carriermanagement" | "carrierfuel" | "voucherredemption" | "shop" | "carriervendor" | "livery" | "modulepacks" | "socialspace" | "bartender" | "vistagenomics" | "pioneersupplies" | "apexinterstellar" | "frontlinesolutions" | "registeringcolonisation" | "colonisationcontribution" | "refinery" | "squadronBank"; /** * Corrects an older station service string to correct new value. * * @param service - The station service which may be out-of-date. * @returns The new station service name. */ export declare function correctStationService(service: string): StationService;