Skip to content

Commit 3a49439

Browse files
authoredAug 20, 2019
Merge pull request #52 from ypresto/patch-1
Fix missing bom arg in d.ts
2 parents 2b6e325 + f513d35 commit 3a49439

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎js-file-download.d.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ declare module 'js-file-download' {
22
export default function fileDownload(
33
data: string | ArrayBuffer | ArrayBufferView | Blob,
44
filename: string,
5-
mime?: string
5+
mime?: string,
6+
bom?: string
67
): void;
78
}

0 commit comments

Comments
 (0)
Please sign in to comment.