Skip to content

Commit 318dbe0

Browse files
committed
Fix stopmotion build typing
1 parent cd142b8 commit 318dbe0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/libs/stopmotion.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,7 @@ const deflate = function (input: zlib.InputType) {
247247
return zlib.deflateRawSync(input, { level: 9 });
248248
};
249249

250-
const encode = function (
251-
input: ArrayBuffer | Buffer | { valueOf(): ArrayBuffer | SharedArrayBuffer },
252-
) {
250+
const encode = function (input: Buffer) {
253251
return EncodeForPrint(Buffer.from(input));
254252
};
255253

0 commit comments

Comments
 (0)