PronounsPage/types/nepali-calendar-js.ts
2024-06-26 13:10:55 +02:00

5 lines
238 B
TypeScript

declare module 'nepali-calendar-js' {
export const nepaliMonthLength: (nYear: number, nMonth: number) => number;
export const toGregorian: (nYear: number, nMonth: number, nDay: number) => { gy: number, gm: number, gd: number };
}