circular-natal-horoscope-js
Version:
By **horoscope**, we're talking about the astrological **birth charts**. **Not** horoscope readings or interpretations.
27 lines (26 loc) • 671 B
TypeScript
export default class ChartPosition {
constructor({ horizonDegrees, eclipticDegrees }?: {
horizonDegrees?: number;
eclipticDegrees?: number;
});
Horizon: {
DecimalDegrees: number;
ArcDegrees: {
degrees: number;
minutes: number;
seconds: number;
};
ArcDegreesFormatted: string;
ArcDegreesFormatted30: string;
};
Ecliptic: {
DecimalDegrees: number;
ArcDegrees: {
degrees: number;
minutes: number;
seconds: number;
};
ArcDegreesFormatted: string;
ArcDegreesFormatted30: string;
};
}