Skip to content

Commit 4dbc9a4

Browse files
authored
Update to bcd@5.2.38: The unprecedented HUGE Safari 16.4 changes comes here (#1514)
Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
1 parent 3f377b9 commit 4dbc9a4

13 files changed

+2199
-16
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,14 @@ declare var ByteLengthQueuingStrategy: {
239239
new(init: QueuingStrategyInit): ByteLengthQueuingStrategy;
240240
};
241241

242+
interface CompressionStream extends GenericTransformStream {
243+
}
244+
245+
declare var CompressionStream: {
246+
prototype: CompressionStream;
247+
new(format: string): CompressionStream;
248+
};
249+
242250
/** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */
243251
interface CountQueuingStrategy extends QueuingStrategy {
244252
readonly highWaterMark: number;
@@ -325,6 +333,14 @@ declare var DOMException: {
325333
readonly DATA_CLONE_ERR: 25;
326334
};
327335

336+
interface DecompressionStream extends GenericTransformStream {
337+
}
338+
339+
declare var DecompressionStream: {
340+
prototype: DecompressionStream;
341+
new(format: string): DecompressionStream;
342+
};
343+
328344
/** Events providing information related to errors in scripts or in files. */
329345
interface ErrorEvent extends Event {
330346
readonly colno: number;

0 commit comments

Comments
 (0)