zhizhi/node_modules/dingtalk-jsapi/api/biz/voice/makeCall.d.ts

22 lines
547 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../../constant/types';
/**
*
* @apiName biz.voice.makeCall
*/
export interface IBizVoiceMakeCallParams extends ICommonAPIParams {
corpId: string;
staffId: string;
}
/**
*
* @apiName biz.voice.makeCall
*/
export interface IBizVoiceMakeCallResult {
}
/**
*
* @apiName biz.voice.makeCall
*/
export declare function makeCall$(params: IBizVoiceMakeCallParams): Promise<IBizVoiceMakeCallResult>;
export default makeCall$;