import { useCallback, useRef, useState } from 'react'; import { downloadBlob } from '../utils/download'; import { message } from '../ui/app-message'; export interface DownloadOptions { /** 成功提示文案;默认「下载成功」 */ successMsg?: string; /** 失败提示文案;默认使用接口返回的错误信息 */ errorMsg?: string; } /** * 统一下载/导出状态:防重复点击 + 成功/失败反馈。 * * 用法: * const { downloading, run } = useDownload(); *