fetchData.d.ts 531 B

123456789101112131415161718192021
  1. /**
  2. * 选择图片 请求参数定义
  3. * @apiName biz.intent.fetchData
  4. */
  5. export interface IBizIntentFetchDataParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 选择图片 返回结果定义
  10. * @apiName biz.intent.fetchData
  11. */
  12. export interface IBizIntentFetchDataResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 选择图片
  17. * @apiName biz.intent.fetchData
  18. * @supportVersion ios: 2.7.6 android: 2.7.6
  19. */
  20. export declare function fetchData$(params: IBizIntentFetchDataParams): Promise<IBizIntentFetchDataResult>;
  21. export default fetchData$;