Skip to content

Commit 442a896

Browse files
committed
Fix Iterable generation caused by iterable dts merging
1 parent 6d205b0 commit 442a896

File tree

6 files changed

+292
-291
lines changed

6 files changed

+292
-291
lines changed

baselines/audioworklet.generated.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2046,7 +2046,7 @@ type ReadableStreamType = "bytes";
20462046

20472047
interface MessageEvent<T = any> {
20482048
/** @deprecated */
2049-
initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: MessagePort[]): void;
2049+
initMessageEvent(type: string, bubbles?: boolean, cancelable?: boolean, data?: any, origin?: string, lastEventId?: string, source?: MessageEventSource | null, ports?: Iterable<MessagePort>): void;
20502050
}
20512051

20522052
interface URLSearchParamsIterator<T> extends IteratorObject<T, BuiltinIteratorReturn, unknown> {

0 commit comments

Comments
 (0)