UNPKG

react-native-plain-calendar

Version:
14 lines (13 loc) 655 B
/// <reference types="react" /> import { StyleProp, ViewStyle } from 'react-native'; import { CellProps } from './Cell'; export interface CellsProps extends CellProps { cellsStyle?: StyleProp<ViewStyle>; daysRowStyle?: StyleProp<ViewStyle>; } interface CellsPrivateProps extends CellsProps { currentMonth: Date; onDateClick(date: Date): void; } export declare function Cells({ currentMonth, selectedDate, onDateClick, startSelectedDate, endSelectedDate, minDate, maxDate, disabledDates, weekStartsOn, cellsStyle, daysRowStyle, dayContainerStyle, DayComponent, dayPropsStyle, disabledDayPick, }: CellsPrivateProps): JSX.Element; export {};