chooseMobileContacts.d.ts 660 B

123456789101112131415161718192021
  1. /**
  2. * 选择手机联系人 请求参数定义
  3. * @apiName biz.contact.chooseMobileContacts
  4. */
  5. export interface IBizContactChooseMobileContactsParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 选择手机联系人 返回结果定义
  10. * @apiName biz.contact.chooseMobileContacts
  11. */
  12. export interface IBizContactChooseMobileContactsResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 选择手机联系人
  17. * @apiName biz.contact.chooseMobileContacts
  18. * @supportVersion ios: 3.1 android: 3.1
  19. */
  20. export declare function chooseMobileContacts$(params: IBizContactChooseMobileContactsParams): Promise<IBizContactChooseMobileContactsResult>;
  21. export default chooseMobileContacts$;