Skip to content

Commit 21d6a9c

Browse files
authored
Merge pull request #145 from Jannchie/patch-1
fix: incorrect function signature in index.d.ts
2 parents 4d367a0 + 3919333 commit 21d6a9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,4 +108,4 @@ export function createFFmpeg(options?: CreateFFmpegOptions): FFmpeg;
108108
* Uint8Array variable for ffmpeg.wasm to consume.
109109
*
110110
*/
111-
export function fetchFile(data: string | Buffer | Blob | File): Uint8Array;
111+
export function fetchFile(data: string | Buffer | Blob | File): Promise<Uint8Array>;

0 commit comments

Comments
 (0)