Skip to content

Commit

Permalink
fix: fix underlyingSink chunk type
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards1211 committed Nov 21, 2024
1 parent 6d1d28a commit 2d01f58
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/WritableStreamWithFinally.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface UnderlyingSinkWithFinally<W = any> extends UnderlyingSink<W> {

export class WritableStreamWithFinally<W = any> extends WritableStream<W> {
constructor(
underlyingSink: UnderlyingSinkWithFinally,
underlyingSink: UnderlyingSinkWithFinally<W>,
strategy?: QueuingStrategy<W>
) {
super(new WritableStreamCleanupHandler<W>(underlyingSink), strategy)
Expand Down

0 comments on commit 2d01f58

Please sign in to comment.