/** * Resonant Orbit - Create orbit with specific period ratio */ import type { KosConnection } from '../../../transport/kos-connection.js'; import { type ManeuverResult } from '../shared.js'; /** * Create a maneuver node to establish a resonant orbit. * Useful for satellite constellations where you want to deploy * satellites at evenly spaced intervals. * * Example: 2:3 resonance means completing 2 orbits while the * original position completes 3, allowing periodic rendezvous. * * @param conn kOS connection * @param numerator Numerator of the resonance ratio * @param denominator Denominator of the resonance ratio * @param timeRef When to execute: 'APOAPSIS', 'PERIAPSIS', 'X_FROM_NOW' */ export declare function resonantOrbit(conn: KosConnection, numerator: number, denominator: number, timeRef?: string): Promise; //# sourceMappingURL=resonant-orbit.d.ts.map