fixing all errors

This commit is contained in:
Sabda Yagra 2026-01-09 23:30:13 +07:00
parent 268f744ebb
commit 6e0d864cb8
1 changed files with 7 additions and 0 deletions

7
types/file-saver.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
declare module "file-saver" {
export function saveAs(
data: Blob | File | string,
filename?: string,
options?: any
): void;
}