import type { EquatorialCoordinate } from "../types.js"; export interface ConstellationInfo { readonly abbreviation: string; readonly name: string; readonly genitive: string; } export interface ConstellationLine { readonly constellation: string; readonly from: string; readonly to: string; } export interface ConstellationBoundaryPoint extends EquatorialCoordinate { } export interface ConstellationBoundary { readonly constellation: string; readonly points: readonly ConstellationBoundaryPoint[]; } //# sourceMappingURL=types.d.ts.map