UNPKG

react-trip-date

Version:

date-picker and range-picker for React applications

8 lines (7 loc) 231 B
import { Dayjs } from "dayjs"; declare const createCalendar: ({ source, startOfWeek, }: CreateCalendarType) => Dayjs[]; export { createCalendar }; interface CreateCalendarType { source: Dayjs; startOfWeek: number; }