UNPKG

@kayahr/ed-journal

Version:

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

21 lines (20 loc) 478 B
import type { JournalEvent } from "../../JournalEvent.js"; export interface Embark extends JournalEvent<"Embark"> { SRV: boolean; Taxi: boolean; Multicrew: boolean; ID?: number; Crew?: Array<{ Name: string; Role: string; }>; StarSystem: string; SystemAddress: number; Body: string; BodyID: number; OnStation: boolean; OnPlanet: boolean; StationName?: string; StationType?: string; MarketID?: number; }