@types/audioworklet 0.0.37 → 0.0.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +16 -0
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -28,4 +28,4 @@ This project does not respect semantic versioning as almost every change could p
28
28
 
29
29
  ## Deploy Metadata
30
30
 
31
- You can read what changed in version 0.0.37 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.37.
31
+ You can read what changed in version 0.0.38 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.38.
package/index.d.ts CHANGED
@@ -241,6 +241,14 @@ declare var ByteLengthQueuingStrategy: {
241
241
  new(init: QueuingStrategyInit): ByteLengthQueuingStrategy;
242
242
  };
243
243
 
244
+ interface CompressionStream extends GenericTransformStream {
245
+ }
246
+
247
+ declare var CompressionStream: {
248
+ prototype: CompressionStream;
249
+ new(format: string): CompressionStream;
250
+ };
251
+
244
252
  /** This Streams API interface provides a built-in byte length queuing strategy that can be used when constructing streams. */
245
253
  interface CountQueuingStrategy extends QueuingStrategy {
246
254
  readonly highWaterMark: number;
@@ -327,6 +335,14 @@ declare var DOMException: {
327
335
  readonly DATA_CLONE_ERR: 25;
328
336
  };
329
337
 
338
+ interface DecompressionStream extends GenericTransformStream {
339
+ }
340
+
341
+ declare var DecompressionStream: {
342
+ prototype: DecompressionStream;
343
+ new(format: string): DecompressionStream;
344
+ };
345
+
330
346
  /** Events providing information related to errors in scripts or in files. */
331
347
  interface ErrorEvent extends Event {
332
348
  readonly colno: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/audioworklet",
3
- "version": "0.0.37",
3
+ "version": "0.0.38",
4
4
  "description": "Types for the global scope of Audio Worklets",
5
5
  "license": "Apache-2.0",
6
6
  "contributors": [],