12345678910111213141516171819 |
- export interface ChooseInterconnectionChatParams {
- title: string;
- multiple?: boolean;
- max: number;
- onlyMultiple?: boolean;
- }
- export interface ChooseInterconnectionChatResultItem {
- id: string;
- title: string;
- }
- declare function chooseContact(args: ChooseInterconnectionChatParams): Promise<ChooseInterconnectionChatResultItem[]>;
- declare namespace chooseContact {
- var version: {
- pc: string;
- ios: string;
- android: string;
- };
- }
- export default chooseContact;
|