@quanxi/ui
Version:
全悉组件库
14 lines (13 loc) • 476 B
TypeScript
/// <reference types="react" />
import { DateOptionsType, TimeOptionsType, TimeType, DateFormatType } from "./type";
export interface quickSelectProps {
value?: {
v: string | undefined;
};
handleConfirm: (time: TimeType) => void;
quickSelectDateOptions: DateOptionsType[];
quickSelectTimeOptions: TimeOptionsType[];
dateFormat?: DateFormatType;
}
declare const QuickSelect: (props: quickSelectProps) => JSX.Element;
export default QuickSelect;