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

10 lines (9 loc) 269 B
import { Year } from '../types'; /** * figure out the animal and element for a tibetan year * * @param {Year} year * @return {Year} with additional attributes */ declare const yearAttributes: (year: Year) => Year; export default yearAttributes;