UNPKG

tibetan-date-calculator

Version:

A library to calculate tibetan calendar details. It is based on Svante Janson's paper www2.math.uu.se/~svante/papers/calendars/tibet.pdf

9 lines (8 loc) 324 B
/** * meanDate(day, monthCount) - corresponding to the linear mean motion of the moon * @param {number} day - the tibetan day * @param {number} monthCount - month count since beginning of epoch * @returns {number} */ declare const meanDate: (day: number, monthCount: number) => number; export default meanDate;