@types/audioworklet 0.0.39 → 0.0.40
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.
- package/README.md +1 -1
- package/index.d.ts +3 -0
- 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.
|
|
31
|
+
You can read what changed in version 0.0.40 at https://github.com/microsoft/TypeScript-DOM-lib-generator/releases/tag/%40types%2Faudioworklet%400.0.40.
|
package/index.d.ts
CHANGED
|
@@ -267,6 +267,7 @@ interface AudioWorkletProcessorImpl extends AudioWorkletProcessor {
|
|
|
267
267
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy)
|
|
268
268
|
*/
|
|
269
269
|
interface ByteLengthQueuingStrategy extends QueuingStrategy<ArrayBufferView> {
|
|
270
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/highWaterMark) */
|
|
270
271
|
readonly highWaterMark: number;
|
|
271
272
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ByteLengthQueuingStrategy/size) */
|
|
272
273
|
readonly size: QueuingStrategySize<ArrayBufferView>;
|
|
@@ -292,6 +293,7 @@ declare var CompressionStream: {
|
|
|
292
293
|
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy)
|
|
293
294
|
*/
|
|
294
295
|
interface CountQueuingStrategy extends QueuingStrategy {
|
|
296
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy/highWaterMark) */
|
|
295
297
|
readonly highWaterMark: number;
|
|
296
298
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/CountQueuingStrategy/size) */
|
|
297
299
|
readonly size: QueuingStrategySize;
|
|
@@ -1082,6 +1084,7 @@ interface WritableStream<W = any> {
|
|
|
1082
1084
|
readonly locked: boolean;
|
|
1083
1085
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/abort) */
|
|
1084
1086
|
abort(reason?: any): Promise<void>;
|
|
1087
|
+
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/close) */
|
|
1085
1088
|
close(): Promise<void>;
|
|
1086
1089
|
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/WritableStream/getWriter) */
|
|
1087
1090
|
getWriter(): WritableStreamDefaultWriter<W>;
|