pickChatByCorpId.d.ts 285 B

12345678910
  1. export interface PickChatParams {
  2. corpId: string;
  3. isAllowCreateGroup?: boolean;
  4. filterNotOwnerGroup?: boolean;
  5. }
  6. export interface ChatResults {
  7. chatId: string;
  8. title: string;
  9. }
  10. export default function pickChatByCorpId(params: PickChatParams): Promise<ChatResults>;