@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
22 lines (21 loc) • 547 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.ts";
import type { ID } from "../types/ID.ts";
/**
* Written when accessing the outfitting menu.
*/
export interface Outfitting extends JournalEvent<"Outfitting"> {
MarketID: ID;
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;
}>;
}