@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
13 lines (12 loc) • 360 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.ts";
import type { ID } from "../types/ID.ts";
/**
* Written after using the Surface Area Analysis scanner.
*/
export interface SAAScanComplete extends JournalEvent<"SAAScanComplete"> {
SystemAddress?: ID;
BodyName: string;
BodyID: ID;
ProbesUsed: number;
EfficiencyTarget: number;
}