UNPKG

flowbite

Version:

The most popular library of interactive components built with Tailwind CSS

20 lines 596 B
import { DatepickerInterface } from './interface'; export interface DatepickerOptions { defaultDatepickerId?: string | null; autohide?: boolean; format?: string; maxDate?: string | null; minDate?: string | null; orientation?: string; buttons?: boolean; autoSelectToday?: number; title?: string | null; language?: string; locales?: { [key: string]: any; }; rangePicker?: boolean | false; onShow?: (Datepicker: DatepickerInterface) => void; onHide?: (Datepicker: DatepickerInterface) => void; } //# sourceMappingURL=types.d.ts.map