t-comm
Version:
专业、稳定、纯粹的工具库
14 lines (13 loc) • 377 B
TypeScript
export declare function downloadFileFromBlob({ blob, fileName, }: {
blob: BlobPart;
fileName: string;
}): void;
export declare function downloadFilesToZip({ fileList, zipName, saveAs, JSZip, }: {
fileList: Array<{
content: string;
name: string;
}>;
zipName: string;
saveAs: (...args: any[]) => any;
JSZip: any;
}): Promise<boolean>;