@hatijs/helper
Version:
Node.js library, which has increased usability in @hatijs/core library.
13 lines (12 loc) • 449 B
TypeScript
import { constant } from '.';
export declare const dignity: (tjdUT: number, geoLon: number, geoLat: number) => {
getPlanet: (ownership: keyof typeof constant.DIGNITY) => (name: "SATURN" | "JUPITER" | "MARS" | "SUN" | "VENUS" | "MERCURY" | "MOON") => boolean | {
[x: string]: {
first: boolean;
second: boolean;
partner: boolean;
};
} | {
[x: string]: boolean;
} | undefined;
};