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