interface DownloadOptions { /** * 下载地址 */ link: string; /** * 下载本地目录 * @example * /project/path/demo.zip */ dist: string; } export interface DownloadResult { /** * 下载状态, stat为ok代表成功 */ stat: string; /** * 错误码 */ code: string; /** * 提示信息 */ message: string; } export default function download(options: DownloadOptions): Promise; export {};