UNPKG

keplerian-core

Version:

High-performance TypeScript library for orbital mechanics calculations, providing numerical integration, state propagation, and perturbation modeling for Keplerian orbits.

7 lines (6 loc) 404 B
import { IntegratorRegistry, IntegratorInfo } from './types'; export declare const integratorRegistry: IntegratorRegistry; export declare const registerIntegrator: (name: string, integrator: any) => void; export declare const getIntegrator: (name: string) => IntegratorInfo; export declare const getIntegratorNames: () => string[]; export declare const getRecommendedIntegrators: () => IntegratorInfo[];