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

23 lines
631 B
TypeScript
Raw Normal View History

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$;