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
8 lines (7 loc) • 332 B
TypeScript
/**
* calculates the julian date from the day count a variant of true_date
* @param {number} dayCount - the day count since beginning of epoch defined as dayNo + 30 * monthCount
* @return {number} - julian date
*/
declare const julianFromTrueDate: (dayCount: number) => number;
export default julianFromTrueDate;