lucy-calendar
Version:
LucyCalendar is a powerful and flexible date picker library for Angular applications, specifically designed for Ethiopian dates. It provides a user-friendly interface for selecting dates and supports various customization options to fit your needs.
14 lines (13 loc) • 371 B
TypeScript
export declare const monthNames: string[];
export declare const dayNames: string[];
export declare function toGregorian(param: {
year: number;
month: number;
day: number;
}): Date;
export declare function toEthiopian(gcDate: Date): {
year: number;
month: number;
day: number;
};
export declare function isEthiopianLeapYear(year: number): boolean;