zhizhi/node_modules/dingtalk-jsapi/api/union/makeVideoConfCall.d.ts

23 lines
635 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName makeVideoConfCall
*/
export interface IUnionMakeVideoConfCallParams extends ICommonAPIParams {
title: string;
calleeCorpId: string;
calleeStaffIds: string[];
}
/**
*
* @apiName makeVideoConfCall
*/
export interface IUnionMakeVideoConfCallResult {
}
/**
*
* @apiName makeVideoConfCall
*/
export declare function makeVideoConfCall$(params: IUnionMakeVideoConfCallParams): Promise<IUnionMakeVideoConfCallResult>;
export default makeVideoConfCall$;