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

23 lines
631 B
TypeScript

import { ICommonAPIParams } from '../../constant/types';
/**
* 发起在线课堂 请求参数定义
* @apiName createLiveClassRoom
*/
export interface IUnionCreateLiveClassRoomParams extends ICommonAPIParams {
startParam: {
liveUuid: string;
};
}
/**
* 发起在线课堂 返回结果定义
* @apiName createLiveClassRoom
*/
export interface IUnionCreateLiveClassRoomResult {
}
/**
* 发起在线课堂
* @apiName createLiveClassRoom
*/
export declare function createLiveClassRoom$(params: IUnionCreateLiveClassRoomParams): Promise<IUnionCreateLiveClassRoomResult>;
export default createLiveClassRoom$;