UNPKG

@snype/nepali-date-converter

Version:

A javascript package to convert nepali date BS (Bikram Sambat) to AD and vice-versa, calcuate age from nepali date (BS)

15 lines (14 loc) 309 B
interface BSArray { [year: number]: [year: number, ...days: number[]]; } interface currentDate { currentYear: number; currentMonth: number; currentDay: number; } interface date { year: number; month: number; day: number; } export type { BSArray, currentDate, date };