import type { JournalEvent } from "../../JournalEvent.ts";
import type { ID } from "../types/ID.ts";
/**
 * Written when scanning a body of a binary pair. YOu will now get an event detailing the orbital parameters of their
 * barycenter.
 */
export interface ScanBaryCentre extends JournalEvent<"ScanBaryCentre"> {
    StarSystem: string;
    SystemAddress: ID;
    BodyID: ID;
    SemiMajorAxis: number;
    Eccentricity: number;
    OrbitalInclination: number;
    Periapsis: number;
    OrbitalPeriod: number;
    AscendingNode: number;
    MeanAnomaly: number;
}
