react-flex-picker
Version:
Helps to build your own calendar by using prepared components and api to control them
7 lines (6 loc) • 476 B
TypeScript
import { Moment } from 'moment';
import { IYearProps } from '../components/year/Year';
export declare function isMonthSelected(month: Moment, startDate: Moment, endDate: Moment): boolean;
export declare function isMonthHovered(month: Moment, startDate: Moment, endDate: Moment, hoveredDate: Moment | Moment[]): boolean;
export declare function isMonthDisabled(month: Moment, props: IYearProps): boolean;
export declare function isSameMonth(month: Moment, b: Moment): boolean;