downloadFile.d.ts 528 B

123456789101112131415161718192021
  1. /**
  2. * 下载文件 请求参数定义
  3. * @apiName biz.util.downloadFile
  4. */
  5. export interface IBizUtilDownloadFileParams {
  6. [key: string]: any;
  7. }
  8. /**
  9. * 下载文件 返回结果定义
  10. * @apiName biz.util.downloadFile
  11. */
  12. export interface IBizUtilDownloadFileResult {
  13. [key: string]: any;
  14. }
  15. /**
  16. * 下载文件
  17. * @apiName biz.util.downloadFile
  18. * @supportVersion pc: 2.5.0
  19. */
  20. export declare function downloadFile$(params: IBizUtilDownloadFileParams): Promise<IBizUtilDownloadFileResult>;
  21. export default downloadFile$;