UNPKG

f-react-native-schedule

Version:

Flexible scheduling library with more built-in features and enhanced customization options

13 lines (12 loc) 641 B
import { Dayjs } from 'dayjs'; import React from 'react'; import { TouchableOpacityProps, ViewProps, GestureResponderEvent } from 'react-native'; import type { Scheduling as SchedulingType } from '../types'; export declare type onSchedulingPress = (scheduling: SchedulingType, event: GestureResponderEvent) => void; export declare type onSchedulingLongPress = (scheduling: SchedulingType, event: GestureResponderEvent) => void; declare type SchedulingProps = { date: Dayjs; scheduling: SchedulingType; } & ViewProps & TouchableOpacityProps; declare const Scheduling: React.FC<SchedulingProps>; export default Scheduling;