UNPKG

dingtalk-jsapi

Version:

钉钉 模块化 多端统一 API

23 lines (22 loc) 551 B
export declare const apiName = "biz.telephone.call"; /** * 打电话 请求参数定义 * @apiName biz.telephone.call */ export interface IBizTelephoneCallParams { [key: string]: any; } /** * 打电话 返回结果定义 * @apiName biz.telephone.call */ export interface IBizTelephoneCallResult { [key: string]: any; } /** * 打电话 * @apiName biz.telephone.call * @supportVersion ios: 2.4.0 android: 2.4.0 */ export declare function call$(params: IBizTelephoneCallParams): Promise<IBizTelephoneCallResult>; export default call$;