UNPKG

@asi-ngtools/lib

Version:

This project is a little components library, simple to use, which will help you to simplify your project.

27 lines (26 loc) 585 B
export declare class Month { num: number; libelle: string; } export declare class Day { num: number; libelle: string; } export declare class DayItem { day: number; month: number; year: number; date: Date; class: string; constructor(num: number, month: number, year: number, date: Date, aClass: string); } export declare const months_fr: Array<Month>; export declare const months_en: { num: number; libelle: string; }[]; export declare const days_fr: Array<Day>; export declare const days_en: { num: number; libelle: string; }[];