Skip to content

Commit 4d82a59

Browse files
committed
Remove type annotation for chunk
1 parent 6b45021 commit 4d82a59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export function execute(
8888
let data = "";
8989

9090
// A chunk of data has been received
91-
resp.on("data", (chunk: Buffer) => {
91+
resp.on("data", (chunk) => {
9292
data += chunk;
9393
});
9494

0 commit comments

Comments
 (0)