You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The **`registerProcessor`** method of the from AudioWorkletProcessor interface under a specified _name_.
284
+
* The **`registerProcessor`** method of the AudioWorkletGlobalScope interface registers a class constructor derived from AudioWorkletProcessor interface under a specified _name_.
@@ -300,7 +300,7 @@ declare var AudioWorkletGlobalScope: {
300
300
*/
301
301
interfaceAudioWorkletProcessor{
302
302
/**
303
-
* The read-only **`port`** property of the The MessagePort object that is connecting the `AudioWorkletProcessor` and the associated `AudioWorkletNode`.
303
+
* The read-only **`port`** property of the AudioWorkletProcessor interface returns the associated MessagePort.
* The **`message`** read-only property of the a message or description associated with the given error name.
416
+
* The **`message`** read-only property of the DOMException interface returns a string representing a message or description associated with the given error name.
* The read-only **`composed`** property of the or not the event will propagate across the shadow DOM boundary into the standard DOM.
568
+
* The read-only **`composed`** property of the Event interface returns a boolean value which indicates whether or not the event will propagate across the shadow DOM boundary into the standard DOM.
* The **`isTrusted`** read-only property of the when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via The only exception is the `click` event, which initializes the `isTrusted` property to `false` in user agents.
592
+
* The **`isTrusted`** read-only property of the Event interface is a boolean value that is `true` when the event was generated by the user agent (including via user actions and programmatic methods such as HTMLElement.focus()), and `false` when the event was dispatched via EventTarget.dispatchEvent().
* The **`stopImmediatePropagation()`** method of the If several listeners are attached to the same element for the same event type, they are called in the order in which they were added.
649
+
* The **`stopImmediatePropagation()`** method of the Event interface prevents other listeners of the same event from being called.
* The **`ports`** read-only property of the containing all MessagePort objects sent with the message, in order.
746
+
* The **`ports`** read-only property of the MessageEvent interface is an array of MessagePort objects containing all MessagePort objects sent with the message, in order.
* The **`source`** read-only property of the a WindowProxy, MessagePort, or a `MessageEventSource` (which can be a WindowProxy, message emitter.
752
+
* The **`source`** read-only property of the MessageEvent interface is a `MessageEventSource` (which can be a WindowProxy, MessagePort, or ServiceWorker object) representing the message emitter.
* The **`postMessage()`** method of the transfers ownership of objects to other browsing contexts.
800
+
* The **`postMessage()`** method of the MessagePort interface sends a message from the port, and optionally, transfers ownership of objects to other browsing contexts.
* The **`tee()`** method of the two-element array containing the two resulting branches as new ReadableStream instances.
930
+
* The **`tee()`** method of the ReadableStream interface tees the current readable stream, returning a two-element array containing the two resulting branches as new ReadableStream instances.
@@ -1004,7 +1004,7 @@ declare var ReadableStreamBYOBRequest: {
1004
1004
*/
1005
1005
interfaceReadableStreamDefaultController<R=any>{
1006
1006
/**
1007
-
* The **`desiredSize`** read-only property of the required to fill the stream's internal queue.
1007
+
* The **`desiredSize`** read-only property of the ReadableStreamDefaultController interface returns the desired size required to fill the stream's internal queue.
* The **`searchParams`** read-only property of the access to the [MISSING: httpmethod('GET')] decoded query arguments contained in the URL.
1303
+
* The **`searchParams`** read-only property of the URL interface returns a URLSearchParams object allowing access to the GET decoded query arguments contained in the URL.
* The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as ```js-nolint toJSON() ``` None.
1315
+
* The **`toJSON()`** method of the URL interface returns a string containing a serialized version of the URL, although in practice it seems to have the same effect as URL.toString().
@@ -1482,43 +1482,43 @@ declare var WritableStreamDefaultController: {
1482
1482
*/
1483
1483
interfaceWritableStreamDefaultWriter<W=any>{
1484
1484
/**
1485
-
* The **`closed`** read-only property of the the stream errors or the writer's lock is released.
1485
+
* The **`closed`** read-only property of the WritableStreamDefaultWriter interface returns a Promise that fulfills if the stream becomes closed, or rejects if the stream errors or the writer's lock is released.
* The **`desiredSize`** read-only property of the to fill the stream's internal queue.
1491
+
* The **`desiredSize`** read-only property of the WritableStreamDefaultWriter interface returns the desired size required to fill the stream's internal queue.
* The **`ready`** read-only property of the that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure.
1497
+
* The **`ready`** read-only property of the WritableStreamDefaultWriter interface returns a Promise that resolves when the desired size of the stream's internal queue transitions from non-positive to positive, signaling that it is no longer applying backpressure.
* The **`abort()`** method of the the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.
1503
+
* The **`abort()`** method of the WritableStreamDefaultWriter interface aborts the stream, signaling that the producer can no longer successfully write to the stream and it is to be immediately moved to an error state, with any queued writes discarded.
* The **`write()`** method of the WritableStreamDefaultWriter interface writes a passed chunk of data to a WritableStream and its underlying sink, then returns a Promise that resolves to indicate the success or failure of the write operation.
@@ -1938,7 +1938,7 @@ declare var currentTime: number;
1938
1938
*/
1939
1939
declarevarsampleRate: number;
1940
1940
/**
1941
-
* The **`registerProcessor`** method of the from AudioWorkletProcessor interface under a specified _name_.
1941
+
* The **`registerProcessor`** method of the AudioWorkletGlobalScope interface registers a class constructor derived from AudioWorkletProcessor interface under a specified _name_.
0 commit comments