Skip to content

Commit 8f8d1da

Browse files
authored
Update to idl@3.49.0 (microsoft#1747)
Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
1 parent d43c44f commit 8f8d1da

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

baselines/dom.generated.d.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1188,6 +1188,10 @@ interface PointerEventInit extends MouseEventInit {
11881188
width?: number;
11891189
}
11901190

1191+
interface PointerLockOptions {
1192+
unadjustedMovement?: boolean;
1193+
}
1194+
11911195
interface PopStateEventInit extends EventInit {
11921196
state?: any;
11931197
}
@@ -1502,7 +1506,7 @@ interface RTCRtcpParameters {
15021506
}
15031507

15041508
interface RTCRtpCapabilities {
1505-
codecs: RTCRtpCodecCapability[];
1509+
codecs: RTCRtpCodec[];
15061510
headerExtensions: RTCRtpHeaderExtensionCapability[];
15071511
}
15081512

@@ -1513,9 +1517,6 @@ interface RTCRtpCodec {
15131517
sdpFmtpLine?: string;
15141518
}
15151519

1516-
interface RTCRtpCodecCapability extends RTCRtpCodec {
1517-
}
1518-
15191520
interface RTCRtpCodecParameters extends RTCRtpCodec {
15201521
payloadType: number;
15211522
}
@@ -7918,7 +7919,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
79187919
*/
79197920
requestFullscreen(options?: FullscreenOptions): Promise<void>;
79207921
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/requestPointerLock) */
7921-
requestPointerLock(): void;
7922+
requestPointerLock(options?: PointerLockOptions): Promise<void>;
79227923
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scroll) */
79237924
scroll(options?: ScrollToOptions): void;
79247925
scroll(x: number, y: number): void;

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)