departmentsPicker.d.ts 607 B

123456789101112131415161718192021
  1. /**
  2. * 选部门 请求参数定义
  3. * @apiName biz.contact.departmentsPicker
  4. */
  5. export interface IBizContactDepartmentsPickerParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 选部门 返回结果定义
  10. * @apiName biz.contact.departmentsPicker
  11. */
  12. export interface IBizContactDepartmentsPickerResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 选部门
  17. * @apiName biz.contact.departmentsPicker
  18. * @supportVersion pc: 4.2.5 ios: 3.0 android: 3.0
  19. */
  20. export declare function departmentsPicker$(params: IBizContactDepartmentsPickerParams): Promise<IBizContactDepartmentsPickerResult>;
  21. export default departmentsPicker$;