1234567891011121314151617181920 |
- export interface PickGroupChatParams {
- title: string;
- multiple?: boolean;
- max?: number;
- pickedCids?: string[];
- limitTips: string;
- }
- export interface PickGroupChatResults {
- conversations: {
- cid: string;
- title: string;
- }[];
- }
- declare function pickGroupChat(params: PickGroupChatParams): Promise<PickGroupChatResults>;
- declare namespace pickGroupChat {
- var version: {
- pc: string;
- };
- }
- export default pickGroupChat;
|