MrShi
7 天以前 1ab34d6347171b10acf78fcd3d6678eac0483bae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/**
 * 日期时间控件 请求参数定义
 * @apiName biz.util.datetimepicker
 */
export interface IBizUtilDatetimepickerParams {
    /** 日期和时间的格式 */
    format?: string;
    /** 默认显示日期和时间 */
    value?: string;
}
/**
 * 日期时间控件 返回结果定义
 * @apiName biz.util.datetimepicker
 */
export interface IBizUtilDatetimepickerResult {
    /** 返回选择的日期和时间 */
    value: string;
}
/**
 * 日期时间控件
 * @apiName biz.util.datetimepicker
 * @supportVersion  ios: 2.4.0 android: 2.4.0
 */
export declare function datetimepicker$(params: IBizUtilDatetimepickerParams): Promise<IBizUtilDatetimepickerResult>;
export default datetimepicker$;