23 lines
709 B
TypeScript
23 lines
709 B
TypeScript
|
|
import { ICommonAPIParams } from '../../constant/types';
|
||
|
|
/**
|
||
|
|
* 获取当前会议信息 请求参数定义
|
||
|
|
* @apiName getActiveConferenceInfo
|
||
|
|
*/
|
||
|
|
export interface IUnionGetActiveConferenceInfoParams extends ICommonAPIParams {
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* 获取当前会议信息 返回结果定义
|
||
|
|
* @apiName getActiveConferenceInfo
|
||
|
|
*/
|
||
|
|
export interface IUnionGetActiveConferenceInfoResult {
|
||
|
|
errorCode: string;
|
||
|
|
errorMessage: string;
|
||
|
|
ConferenceInfo: string;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* 获取当前会议信息
|
||
|
|
* @apiName getActiveConferenceInfo
|
||
|
|
*/
|
||
|
|
export declare function getActiveConferenceInfo$(params: IUnionGetActiveConferenceInfoParams): Promise<IUnionGetActiveConferenceInfoResult>;
|
||
|
|
export default getActiveConferenceInfo$;
|