mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-27 14:21:00 +00:00
13 lines
437 B
TypeScript
13 lines
437 B
TypeScript
import { DayOfWeek } from '../../types';
|
|
export declare function useDatesContext(): {
|
|
getLocale: (input?: string) => string;
|
|
getFirstDayOfWeek: (input?: DayOfWeek) => DayOfWeek;
|
|
getWeekendDays: (input?: DayOfWeek[]) => DayOfWeek[];
|
|
getLabelSeparator: (input?: string) => string;
|
|
locale: string;
|
|
firstDayOfWeek: DayOfWeek;
|
|
weekendDays: DayOfWeek[];
|
|
labelSeparator: string;
|
|
consistentWeeks: boolean;
|
|
};
|