choose.d.ts 590 B

123456789101112131415161718192021
  1. /**
  2. * 自定义选人组件 请求参数定义
  3. * @apiName biz.customContact.choose
  4. */
  5. export interface IBizCustomContactChooseParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 自定义选人组件 返回结果定义
  10. * @apiName biz.customContact.choose
  11. */
  12. export interface IBizCustomContactChooseResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 自定义选人组件
  17. * @apiName biz.customContact.choose
  18. * @supportVersion pc: 3.0.0 ios: 2.5.2 android: 2.5.2
  19. */
  20. export declare function choose$(params: IBizCustomContactChooseParams): Promise<IBizCustomContactChooseResult>;
  21. export default choose$;