Skip to content

Commit

Permalink
Update to idl@3.49.0 (#1747)
Browse files Browse the repository at this point in the history
Co-authored-by: saschanaz <saschanaz@users.noreply.github.com>
  • Loading branch information
saschanaz and saschanaz authored Jun 25, 2024
1 parent d43c44f commit 8f8d1da
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
11 changes: 6 additions & 5 deletions baselines/dom.generated.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1188,6 +1188,10 @@ interface PointerEventInit extends MouseEventInit {
width?: number;
}

interface PointerLockOptions {
unadjustedMovement?: boolean;
}

interface PopStateEventInit extends EventInit {
state?: any;
}
Expand Down Expand Up @@ -1502,7 +1506,7 @@ interface RTCRtcpParameters {
}

interface RTCRtpCapabilities {
codecs: RTCRtpCodecCapability[];
codecs: RTCRtpCodec[];
headerExtensions: RTCRtpHeaderExtensionCapability[];
}

Expand All @@ -1513,9 +1517,6 @@ interface RTCRtpCodec {
sdpFmtpLine?: string;
}

interface RTCRtpCodecCapability extends RTCRtpCodec {
}

interface RTCRtpCodecParameters extends RTCRtpCodec {
payloadType: number;
}
Expand Down Expand Up @@ -7918,7 +7919,7 @@ interface Element extends Node, ARIAMixin, Animatable, ChildNode, NonDocumentTyp
*/
requestFullscreen(options?: FullscreenOptions): Promise<void>;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/requestPointerLock) */
requestPointerLock(): void;
requestPointerLock(options?: PointerLockOptions): Promise<void>;
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/Element/scroll) */
scroll(options?: ScrollToOptions): void;
scroll(x: number, y: number): void;
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 8f8d1da

Please sign in to comment.