litepicker-react
Version:
This component is react wrapper for [litepicker](https://litepicker.com/).
12 lines (11 loc) • 583 B
TypeScript
import { InputHTMLAttributes } from "react";
import Litepicker from "litepicker";
import type { ILPConfiguration } from "litepicker/dist/types/interfaces";
export type LitePickerInputElement = HTMLInputElement & {
litePickerInstance?: Litepicker;
};
export type LitePickerOptions = Omit<ILPConfiguration, "element">;
declare const _default: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<InputHTMLAttributes<HTMLInputElement> & {
options: LitePickerOptions;
} & import("react").RefAttributes<LitePickerInputElement>>>;
export default _default;