better-suncalc
Version:
A tiny TypeScript library for calculating sun/moon positions and phases.
11 lines (10 loc) • 611 B
JavaScript
/*
index.ts
(better) SunCalc - A tiny sun and moon calculation library.
*/
export { fromJulian, hoursLater, toDays, toJulian } from "./utils";
export { addTime, altitude, approxTransit, astroRefraction, azimuth, declination, eclipticLongitude, getPosition, getSetJ, getTimes, hourAngle, julianCycle, rightAscension, siderealTime, solarMeanAnomaly, solarTransitJ, sunCoords, } from "./suncalc";
export { getMoonIllumination, getMoonPosition, getMoonTimes, moonCoords, } from "./mooncalc";
export { getSolstices } from "./solstice";
export { getEquinoxes } from "./equinox";
//# sourceMappingURL=index.js.map