Skip to content

Commit 465b160

Browse files
committedOct 9, 2023
chore: rebase commits from main
2 parents 260f596 + e65f51a commit 465b160

5 files changed

+133
-8
lines changed
 

‎baselines/audioworklet.generated.d.ts

+5
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,7 @@ interface TextEncoderEncodeIntoResult {
129129
}
130130

131131
interface Transformer<I = any, O = any> {
132+
cancel?: TransformerCancelCallback;
132133
flush?: TransformerFlushCallback<O>;
133134
readableType?: undefined;
134135
start?: TransformerStartCallback<O>;
@@ -1351,6 +1352,10 @@ interface QueuingStrategySize<T = any> {
13511352
(chunk: T): number;
13521353
}
13531354

1355+
interface TransformerCancelCallback {
1356+
(reason: any): void | PromiseLike<void>;
1357+
}
1358+
13541359
interface TransformerFlushCallback<O> {
13551360
(controller: TransformStreamDefaultController<O>): void | PromiseLike<void>;
13561361
}

0 commit comments

Comments
 (0)