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

25 lines
605 B
TypeScript
Raw Normal View History

import { ICommonAPIParams } from '../../constant/types';
/**
*
* @apiName chooseChat
*/
export interface IUnionChooseChatParams extends ICommonAPIParams {
corpId: string;
isAllowCreateGroup: boolean;
filterNotOwnerGroup: boolean;
}
/**
*
* @apiName chooseChat
*/
export interface IUnionChooseChatResult {
title: string;
chatId: string;
}
/**
*
* @apiName chooseChat
*/
export declare function chooseChat$(params: IUnionChooseChatParams): Promise<IUnionChooseChatResult>;
export default chooseChat$;