nepalipatrojs
Version:
A JavaScript library for Nepali date conversion and calendar utilities
22 lines • 707 B
TypeScript
export declare const MIN_BS_YEAR = 2000;
export declare const MAX_BS_YEAR = 2099;
export declare const MIN_AD_YEAR = 1943;
/**
* Reference dates for calendar conversion
* 2000-01-01 BS == 1943-04-14 AD
*/
export declare const REF_BS: {
year: number;
month: number;
day: number;
};
export declare const REF_AD: Date;
/**
* Bikram Sambat calendar data with days in each month for years 2000-2099
* Each year entry contains:
* 1. An array with days in each month [Baisakh, Jestha, ..., Chaitra]
* 2. Total days in the year
*/
export declare const BS_CALENDAR_DATA: Record<number, [number[], number]>;
export declare const NEPALI_DIGITS: string[];
//# sourceMappingURL=calendar-data.d.ts.map