123456789101112131415161718 |
- export interface PickChatParams {
- corpId: string;
- isConfirm?: boolean;
- enableExternalUser?: boolean;
- }
- export interface ChatResults {
- cid: string;
- title: string;
- }
- declare function pickChat(params: PickChatParams): Promise<ChatResults>;
- declare namespace pickChat {
- var version: {
- android: string;
- ios: string;
- pc: string;
- };
- }
- export default pickChat;
|