UNPKG

dingtalk-jsapi

Version:

钉钉 模块化 多端统一 API

23 lines (22 loc) 695 B
import { ICommonAPIParams } from '../../constant/types'; /** * 月历组件:选择某天 请求参数定义 * @apiName chooseOneDayInCalendar */ export interface IUnionChooseOneDayInCalendarParams extends ICommonAPIParams { default: number; } /** * 月历组件:选择某天 返回结果定义 * @apiName chooseOneDayInCalendar */ export interface IUnionChooseOneDayInCalendarResult { chosen: number; timezone: number; } /** * 月历组件:选择某天 * @apiName chooseOneDayInCalendar */ export declare function chooseOneDayInCalendar$(params: IUnionChooseOneDayInCalendarParams): Promise<IUnionChooseOneDayInCalendarResult>; export default chooseOneDayInCalendar$;