/** * Longitude of Periapsis - Change where periapsis occurs in the orbit */ import type { KosConnection } from '../../../transport/kos-connection.js'; import { type ManeuverResult } from '../shared.js'; /** * Create a maneuver node to change the Longitude of Periapsis. * This rotates the orbit so periapsis occurs at the specified longitude. * * @param conn kOS connection * @param newLong Target longitude in degrees (-180 to 180) * @param timeRef When to execute: 'APOAPSIS', 'PERIAPSIS', 'X_FROM_NOW', 'ALTITUDE' */ export declare function changeLongitudeOfPeriapsis(conn: KosConnection, newLong: number, timeRef?: string): Promise; //# sourceMappingURL=longitude.d.ts.map