pickGroupChat.d.ts 472 B

1234567891011121314151617181920
  1. export interface PickGroupChatParams {
  2. title: string;
  3. multiple?: boolean;
  4. max?: number;
  5. pickedCids?: string[];
  6. limitTips: string;
  7. }
  8. export interface PickGroupChatResults {
  9. conversations: {
  10. cid: string;
  11. title: string;
  12. }[];
  13. }
  14. declare function pickGroupChat(params: PickGroupChatParams): Promise<PickGroupChatResults>;
  15. declare namespace pickGroupChat {
  16. var version: {
  17. pc: string;
  18. };
  19. }
  20. export default pickGroupChat;