@cainiaofe/cn-ui-m
Version:
20 lines (19 loc) • 392 B
TypeScript
import { BasicComponentProps } from "../../../types";
export interface CalendarTimePickerProps extends Omit<BasicComponentProps, 'onChange'> {
/**
* 选中时间
*/
value?: Date;
/**
* 显示内容
*/
label?: string;
/**
* 显示格式
*/
format?: string;
/**
* 时间改变回调
*/
onChange?: (date?: Date) => void;
}