UNPKG

@nrweb/astro-calc

Version:

Comprehensive astrological calculations using Swiss Ephemeris and astronomy-engine for positions, aspects, houses, lots, and scoring metrics

14 lines 443 B
interface DailyScores { romanceScore: number; careerScore: number; wealthScore: number; magicScore: number; friendshipScore: number; healthScore: number; } interface MonthlyScores { [date: string]: DailyScores; } declare function calculateMonthlyScores(latitude?: number, longitude?: number): MonthlyScores; export { calculateMonthlyScores, DailyScores, MonthlyScores }; //# sourceMappingURL=monthly-scores.d.ts.map