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 committed Mar 26, 2024
1 parent a953e00 commit 9456414
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/streaming.ts
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 9456414

Please sign in to comment.