Skip to content

Commit 2a79781

Browse files
stainless-botrattrayalex
authored andcommitted
chore(internal): add type (#359)
1 parent 131ba63 commit 2a79781

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/streaming.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ export class Stream<Item> implements AsyncIterable<Item> {
202202
async start() {
203203
iter = self[Symbol.asyncIterator]();
204204
},
205-
async pull(ctrl) {
205+
async pull(ctrl: any) {
206206
try {
207207
const { value, done } = await iter.next();
208208
if (done) return ctrl.close();

0 commit comments

Comments
 (0)