Skip to content

Commit c622a10

Browse files
committed
Update DOM and baselines
1 parent 83069ef commit c622a10

19 files changed

+4029
-3754
lines changed

src/lib/dom.generated.d.ts

+2,300-2,077
Large diffs are not rendered by default.

src/lib/dom.iterable.generated.d.ts

+14
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ interface BaseAudioContext {
1414
createPeriodicWave(real: Iterable<number>, imag: Iterable<number>, constraints?: PeriodicWaveConstraints): PeriodicWave;
1515
}
1616

17+
interface CSSKeyframesRule {
18+
[Symbol.iterator](): IterableIterator<CSSKeyframeRule>;
19+
}
20+
1721
interface CSSRuleList {
1822
[Symbol.iterator](): IterableIterator<CSSRule>;
1923
}
@@ -117,6 +121,16 @@ interface IDBObjectStore {
117121
createIndex(name: string, keyPath: string | Iterable<string>, options?: IDBIndexParameters): IDBIndex;
118122
}
119123

124+
interface MIDIInputMap extends ReadonlyMap<string, MIDIInput> {
125+
}
126+
127+
interface MIDIOutput {
128+
send(data: Iterable<number>, timestamp?: DOMHighResTimeStamp): void;
129+
}
130+
131+
interface MIDIOutputMap extends ReadonlyMap<string, MIDIOutput> {
132+
}
133+
120134
interface MediaKeyStatusMap {
121135
[Symbol.iterator](): IterableIterator<[BufferSource, MediaKeyStatus]>;
122136
entries(): IterableIterator<[BufferSource, MediaKeyStatus]>;

0 commit comments

Comments
 (0)