react-native-plain-calendar
Version:
Calendar component for React-Native
14 lines (13 loc) • 655 B
TypeScript
/// <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 {};