UNPKG

astrology-insights

Version:

Comprehensive Vedic astrology engine for Node.js — Panchang, birth charts (Kundli), Vimshottari Dasha, divisional charts, dosha analysis, and planetary remedies. Swiss Ephemeris precision, validated against Drik Panchang.

14 lines (13 loc) 375 B
/** * Chart Layout Generator * Produces North Indian, South Indian, and Western chart box layouts. */ import { HouseInfo, ChartLayout } from '../types'; /** * Generate all three chart layouts from house data. */ export declare function generateChartLayouts(houses: HouseInfo[]): { northIndian: ChartLayout; southIndian: ChartLayout; western: ChartLayout; };