UNPKG

@rehookify/datepicker

Version:

The ultimate tool to create a date, range and time picker in your React applications.

9 lines 318 B
import { ReactNode } from 'react'; import { DPUserConfig } from './config'; import { DPUseDatePicker } from './hooks'; export type DatePickerContextValue = ReturnType<DPUseDatePicker>; export interface DatePickerProviderProps { children: ReactNode; config: DPUserConfig; } //# sourceMappingURL=context.d.ts.map