@ishubhamx/panchangam-js
Version:
Enhanced Indian Panchangam (Hindu Calendar) library with comprehensive Vedic features including Muhurta calculations, planetary positions, Rashi placements, and auspicious/inauspicious time calculations
29 lines • 594 B
TypeScript
import { Kundli } from "../kundli/types";
export interface MatchingInput {
boy: Kundli;
girl: Kundli;
}
export interface KootaResult {
name: string;
score: number;
maxScore: number;
description: string;
area: string;
}
export interface DoshaResult {
hasDosha: boolean;
isHigh: boolean;
description: string;
}
export interface MatchResult {
ashtakoot: {
totalScore: number;
kootas: KootaResult[];
};
dosha: {
boy: DoshaResult;
girl: DoshaResult;
};
verdict: string;
}
//# sourceMappingURL=types.d.ts.map