@kayahr/ed-journal
Version:
Typescript library to read/watch the player journal of Frontier's game Elite Dangerous
8 lines (7 loc) • 305 B
TypeScript
import type { JournalEvent } from "../../JournalEvent.js";
import type { MicroResource } from "../types/MicroResource.js";
export interface DeliverPowerMicroResources extends JournalEvent<"DeliverPowerMicroResources"> {
TotalCount: number;
MicroResources: MicroResource[];
MarketID: number;
}