zhizhi/node_modules/dingtalk-jsapi/api/biz/calendar/chooseInterval.d.ts

31 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* 唤起月历组件,并选择日期区间,并以“天”为维度 请求参数定义
* @apiName biz.calendar.chooseInterval
*/
export interface IBizCalendarChooseIntervalParams {
/** 时间戳默认开始时间单位为毫秒ms */
defaultStart: number;
/** 时间戳默认结束时间单位为毫秒ms */
defaultEnd: number;
}
/**
* 唤起月历组件,并选择日期区间,并以“天”为维度 返回结果定义
* @apiName biz.calendar.chooseInterval
*/
export interface IBizCalendarChooseIntervalResult {
/** 时间戳为起始当日0点的时间单位为毫秒ms */
start: number;
/** 时间戳为截止当日0点的时间单位为毫秒ms */
end: number;
/** 整型,用户当前所在时区 */
timezone: number;
}
/**
* 唤起月历组件,并选择日期区间,并以“天”为维度
* @description 依赖钉钉客户端3.5.0以上版本
* @apiName biz.calendar.chooseInterval
* @supportVersion ios: 3.5.0 android: 3.5.0
*/
export declare function chooseInterval$(params: IBizCalendarChooseIntervalParams): Promise<IBizCalendarChooseIntervalResult>;
export default chooseInterval$;