multipleChoose.d.ts 698 B

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