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
Copy file name to clipboardExpand all lines: baselines/audioworklet.generated.d.ts
+23-69
Original file line number
Diff line number
Diff line change
@@ -154,68 +154,40 @@ declare var CountQueuingStrategy: {
154
154
155
155
/** An event which takes place in the DOM. */
156
156
interfaceEvent{
157
-
/**
158
-
* Returns true or false depending on how event was initialized. True if event goes through its target's ancestors in reverse tree order, and false otherwise.
159
-
*/
157
+
/** Returns true or false depending on how event was initialized. True if event goes through its target's ancestors in reverse tree order, and false otherwise. */
160
158
readonlybubbles: boolean;
161
159
cancelBubble: boolean;
162
-
/**
163
-
* Returns true or false depending on how event was initialized. Its return value does not always carry meaning, but true can indicate that part of the operation during which event was dispatched, can be canceled by invoking the preventDefault() method.
164
-
*/
160
+
/** Returns true or false depending on how event was initialized. Its return value does not always carry meaning, but true can indicate that part of the operation during which event was dispatched, can be canceled by invoking the preventDefault() method. */
165
161
readonlycancelable: boolean;
166
-
/**
167
-
* Returns true or false depending on how event was initialized. True if event invokes listeners past a ShadowRoot node that is the root of its target, and false otherwise.
168
-
*/
162
+
/** Returns true or false depending on how event was initialized. True if event invokes listeners past a ShadowRoot node that is the root of its target, and false otherwise. */
169
163
readonlycomposed: boolean;
170
-
/**
171
-
* Returns the object whose event listener's callback is currently being invoked.
172
-
*/
164
+
/** Returns the object whose event listener's callback is currently being invoked. */
173
165
readonlycurrentTarget: EventTarget|null;
174
-
/**
175
-
* Returns true if preventDefault() was invoked successfully to indicate cancelation, and false otherwise.
176
-
*/
166
+
/** Returns true if preventDefault() was invoked successfully to indicate cancelation, and false otherwise. */
177
167
readonlydefaultPrevented: boolean;
178
-
/**
179
-
* Returns the event's phase, which is one of NONE, CAPTURING_PHASE, AT_TARGET, and BUBBLING_PHASE.
180
-
*/
168
+
/** Returns the event's phase, which is one of NONE, CAPTURING_PHASE, AT_TARGET, and BUBBLING_PHASE. */
181
169
readonlyeventPhase: number;
182
-
/**
183
-
* Returns true if event was dispatched by the user agent, and false otherwise.
184
-
*/
170
+
/** Returns true if event was dispatched by the user agent, and false otherwise. */
185
171
readonlyisTrusted: boolean;
186
172
/** @deprecated */
187
173
returnValue: boolean;
188
174
/** @deprecated */
189
175
readonlysrcElement: EventTarget|null;
190
-
/**
191
-
* Returns the object to which event is dispatched (its target).
192
-
*/
176
+
/** Returns the object to which event is dispatched (its target). */
193
177
readonlytarget: EventTarget|null;
194
-
/**
195
-
* Returns the event's timestamp as the number of milliseconds measured relative to the time origin.
196
-
*/
178
+
/** Returns the event's timestamp as the number of milliseconds measured relative to the time origin. */
197
179
readonlytimeStamp: DOMHighResTimeStamp;
198
-
/**
199
-
* Returns the type of event, e.g. "click", "hashchange", or "submit".
200
-
*/
180
+
/** Returns the type of event, e.g. "click", "hashchange", or "submit". */
201
181
readonlytype: string;
202
-
/**
203
-
* Returns the invocation target objects of event's path (objects on which listeners will be invoked), except for any nodes in shadow trees of which the shadow root's mode is "closed" that are not reachable from event's currentTarget.
204
-
*/
182
+
/** Returns the invocation target objects of event's path (objects on which listeners will be invoked), except for any nodes in shadow trees of which the shadow root's mode is "closed" that are not reachable from event's currentTarget. */
* If invoked when the cancelable attribute value is true, and while executing a listener for the event with passive set to false, signals to the operation that caused event to be dispatched that it needs to be canceled.
210
-
*/
186
+
/** If invoked when the cancelable attribute value is true, and while executing a listener for the event with passive set to false, signals to the operation that caused event to be dispatched that it needs to be canceled. */
211
187
preventDefault(): void;
212
-
/**
213
-
* Invoking this method prevents event from reaching any registered event listeners after the current one finishes running and, when dispatched in a tree, also prevents event from reaching any other objects.
214
-
*/
188
+
/** Invoking this method prevents event from reaching any registered event listeners after the current one finishes running and, when dispatched in a tree, also prevents event from reaching any other objects. */
215
189
stopImmediatePropagation(): void;
216
-
/**
217
-
* When dispatched in a tree, invoking this method prevents event from reaching any objects other than the current object.
218
-
*/
190
+
/** When dispatched in a tree, invoking this method prevents event from reaching any objects other than the current object. */
219
191
stopPropagation(): void;
220
192
readonlyAT_TARGET: number;
221
193
readonlyBUBBLING_PHASE: number;
@@ -258,13 +230,9 @@ interface EventTarget {
258
230
* The event listener is appended to target's event listener list and is not appended if it has the same type, callback, and capture.
* Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise.
263
-
*/
233
+
/** Dispatches a synthetic event event to target and returns true if either event's cancelable attribute value is false or its preventDefault() method was not invoked, and false otherwise. */
264
234
dispatchEvent(event: Event): boolean;
265
-
/**
266
-
* Removes the event listener in target's event listener list with the same type, callback, and options.
267
-
*/
235
+
/** Removes the event listener in target's event listener list with the same type, callback, and options. */
* Returns the last event ID string, for server-sent events.
284
-
*/
248
+
/** Returns the last event ID string, for server-sent events. */
285
249
readonlylastEventId: string;
286
-
/**
287
-
* Returns the origin of the message, for server-sent events and cross-document messaging.
288
-
*/
250
+
/** Returns the origin of the message, for server-sent events and cross-document messaging. */
289
251
readonlyorigin: string;
290
-
/**
291
-
* Returns the MessagePort array sent with the message, for cross-document messaging and channel messaging.
292
-
*/
252
+
/** Returns the MessagePort array sent with the message, for cross-document messaging and channel messaging. */
293
253
readonlyports: ReadonlyArray<MessagePort>;
294
-
/**
295
-
* Returns the WindowProxy of the source window, for cross-document messaging, and the MessagePort being attached, in the connect event fired at SharedWorkerGlobalScope objects.
296
-
*/
254
+
/** Returns the WindowProxy of the source window, for cross-document messaging, and the MessagePort being attached, in the connect event fired at SharedWorkerGlobalScope objects. */
* Disconnects the port, so that it is no longer active.
318
-
*/
274
+
/** Disconnects the port, so that it is no longer active. */
319
275
close(): void;
320
276
/**
321
277
* Posts a message through the channel. Objects listed in transfer are transferred, not just cloned, meaning that they are no longer usable on the sending side.
0 commit comments