/* * Copyright (C) 2022 Klaus Reimer * See LICENSE.md for licensing information. */ 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; }>; }