UNPKG

672 BPlain TextView Raw
1import type { Locale } from './Locale';
2import type { Theme } from './Theme';
3import type {
4 ArrowComponentType,
5 MonthComponentType,
6 TitleComponentType,
7 DayComponentType,
8 WeekdaysComponentType,
9} from './Components';
10
11export interface WrapperCalendarProps {
12 ArrowComponent?: ArrowComponentType;
13 TitleComponent?: TitleComponentType;
14 DayComponent?: DayComponentType;
15 MonthComponent?: MonthComponentType;
16 WeekdaysComponent?: WeekdaysComponentType;
17 initVisibleDate?: string;
18 disabledDates?: string[];
19 minDate?: string;
20 maxDate?: string;
21 allowYearView?: boolean;
22 showExtraDates?: boolean;
23 testID?: string;
24 locale?: Locale;
25 theme?: Theme;
26}