UNPKG

react-native-ui-datepicker-custom-v2

Version:
23 lines 973 B
/// <reference types="react" /> import { CalendarViews } from './enums'; import type { DateType, DatePickerBaseProps, CalendarThemeProps, IsDateDisabled } from './types'; export interface CalendarContextType extends DatePickerBaseProps { locale: string | ILocale; displayFullDays: boolean; firstDayOfWeek: number; theme: CalendarThemeProps; calendarView: CalendarViews; currentDate: DateType; currentYear: number; setCalendarView: (value: CalendarViews) => void; onSelectDate: (date: DateType) => void; onSelectMonth: (month: number) => void; onSelectYear: (year: number) => void; onChangeMonth: (value: number) => void; onChangeYear: (value: number) => void; isDateDisabled?: IsDateDisabled; } declare const CalendarContext: import("react").Context<CalendarContextType>; export declare const useCalendarContext: () => CalendarContextType; export default CalendarContext; //# sourceMappingURL=CalendarContext.d.ts.map