f-react-native-schedule
Version:
Flexible scheduling library with more built-in features and enhanced customization options
11 lines (10 loc) • 484 B
TypeScript
import React from 'react';
import type { Dayjs } from 'dayjs';
import { TouchableOpacityProps, ViewProps, GestureResponderEvent } from 'react-native';
export declare type onCellPress = (date: Dayjs, event: GestureResponderEvent) => void;
export declare type onCellLongPress = (date: Dayjs, event: GestureResponderEvent) => void;
declare type CellProps = {
date: Dayjs;
} & ViewProps & TouchableOpacityProps;
declare const Cell: React.FC<CellProps>;
export default Cell;