choose.d.ts 566 B

123456789101112131415161718192021
  1. /**
  2. * 修改企业通讯录选人 请求参数定义
  3. * @apiName biz.contact.choose
  4. */
  5. export interface IBizContactChooseParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 修改企业通讯录选人 返回结果定义
  10. * @apiName biz.contact.choose
  11. */
  12. export interface IBizContactChooseResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 修改企业通讯录选人
  17. * @apiName biz.contact.choose
  18. * @supportVersion pc: 2.5.0 ios: 2.4.0 android: 2.4.0
  19. */
  20. export declare function choose$(params: IBizContactChooseParams): Promise<IBizContactChooseResult>;
  21. export default choose$;