@aveonline/ui-react
Version:
Home base for Aveonline design system - ecosystem react
16 lines (15 loc) • 332 B
TypeScript
export interface DayInfo {
day: number;
aux: number;
month: number;
year: number;
group?: string | number;
toolTipText?: string;
toolTipTitle?: string;
}
export declare const useGenerateDaysArray: () => {
daysFormat: DayInfo[];
days: number[];
actualMonth: number;
actualYear: number;
};