Skip to content

Commit

Permalink
chore(internal): add type (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot authored and rattrayalex committed Mar 29, 2024
1 parent 131ba63 commit 2a79781
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/streaming.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export class Stream<Item> implements AsyncIterable<Item> {
async start() {
iter = self[Symbol.asyncIterator]();
},
async pull(ctrl) {
async pull(ctrl: any) {
try {
const { value, done } = await iter.next();
if (done) return ctrl.close();
Expand Down

0 comments on commit 2a79781

Please sign in to comment.