circular-natal-horoscope-js
Version:
By **horoscope**, we're talking about the astrological **birth charts**. **Not** horoscope readings or interpretations.
20 lines (19 loc) • 527 B
TypeScript
export default Sign;
declare class Sign {
static Astronomical(language: any): Sign[];
static Sidereal(language: any): Sign[];
static Tropical(language: any): Sign[];
static OfType(zodiac: any, language?: string): Sign[];
constructor({ key, zodiac, language }?: {
key?: string;
zodiac?: string;
language?: string;
});
key: string;
zodiac: any;
label: any;
get StartDate(): any;
get EndDate(): any;
get ZodiacStart(): number;
get ZodiacEnd(): number;
}