UNPKG

@kayahr/ed-journal

Version:

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

21 lines (20 loc) 509 B
import type { JournalEvent } from "../../JournalEvent.js"; /** * Written when accessing the outfitting menu. */ export interface Outfitting extends JournalEvent<"Outfitting"> { MarketID: number; StarSystem: string; StationName: string; } /** * Extended outfitting info written to separate 'Outfitting.json' file. */ export interface ExtendedOutfitting extends Outfitting { Horizons: boolean; Items: Array<{ id: number; Name: string; BuyPrice: number; }>; }