feat: cloud options

This commit is contained in:
jialin
2025-09-16 11:26:17 +08:00
parent 632f206228
commit 6e5a7035c8
29 changed files with 788 additions and 276 deletions
+5
View File
@@ -0,0 +1,5 @@
import { saveAs } from 'file-saver';
export const downloadFile = (blob: Blob, filename: string) => {
saveAs(blob, filename);
};