UNPKG

@kayahr/ed-journal

Version:

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

23 lines (22 loc) 640 B
import type { JournalEvent } from "../../JournalEvent.ts"; /** * Written when a screenshot has been taken. * * The latitude, longitude, altitude and heading will be included if on a planet or in low-altitude flight. */ export interface Screenshot extends JournalEvent<"Screenshot"> { /** Filename of screenshot. */ Filename: string; /** Width in pixels. */ Width: number; /** Height in pixels. */ Height: number; /** Current star system. */ System?: string; /** Name of nearest body. */ Body?: string; Latitude?: number; Longitude?: number; Altitude?: number; Heading?: number; }