UNPKG

react-flex-picker

Version:

Helps to build your own calendar by using prepared components and api to control them

8 lines (7 loc) 521 B
import { Moment } from 'moment'; import { IMonthProps } from '../components/month/Month'; export declare function isWeekEnd(day: Moment): boolean; export declare function isDaySelected(day: Moment, startDate: Moment, endDate: Moment): boolean; export declare function isDayHovered(day: Moment, startDate: Moment, endDate: Moment, hoveredDate: Moment | Moment[]): boolean; export declare function isDayDisabled(day: Moment, props: IMonthProps): boolean; export declare function isSameDay(day: Moment, b: Moment): boolean;