@@ -277,6 +277,7 @@ interface CredentialCreationOptions {
277
277
}
278
278
279
279
interface CredentialPropertiesOutput {
280
+ authenticatorDisplayName?: string;
280
281
rk?: boolean;
281
282
}
282
283
@@ -2113,7 +2114,7 @@ interface WebTransportOptions {
2113
2114
}
2114
2115
2115
2116
interface WebTransportSendStreamOptions {
2116
- sendOrder?: number | null ;
2117
+ sendOrder?: number;
2117
2118
}
2118
2119
2119
2120
interface WheelEventInit extends MouseEventInit {
@@ -3052,6 +3053,7 @@ declare var BaseAudioContext: {
3052
3053
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent)
3053
3054
*/
3054
3055
interface BeforeUnloadEvent extends Event {
3056
+ /** @deprecated */
3055
3057
returnValue: any;
3056
3058
}
3057
3059
@@ -3709,6 +3711,7 @@ interface CSSRule {
3709
3711
readonly KEYFRAMES_RULE: 7;
3710
3712
readonly KEYFRAME_RULE: 8;
3711
3713
readonly SUPPORTS_RULE: 12;
3714
+ readonly VIEW_TRANSITION_RULE: 15;
3712
3715
}
3713
3716
3714
3717
declare var CSSRule: {
@@ -3724,6 +3727,7 @@ declare var CSSRule: {
3724
3727
readonly KEYFRAMES_RULE: 7;
3725
3728
readonly KEYFRAME_RULE: 8;
3726
3729
readonly SUPPORTS_RULE: 12;
3730
+ readonly VIEW_TRANSITION_RULE: 15;
3727
3731
};
3728
3732
3729
3733
/**
@@ -4328,6 +4332,8 @@ interface CSSStyleDeclaration {
4328
4332
offsetDistance: string;
4329
4333
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-path) */
4330
4334
offsetPath: string;
4335
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-position) */
4336
+ offsetPosition: string;
4331
4337
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/offset-rotate) */
4332
4338
offsetRotate: string;
4333
4339
/** [MDN Reference](https://developer.mozilla.org/docs/Web/CSS/opacity) */
@@ -8839,6 +8845,7 @@ interface GlobalEventHandlersEventMap {
8839
8845
"animationstart": AnimationEvent;
8840
8846
"auxclick": MouseEvent;
8841
8847
"beforeinput": InputEvent;
8848
+ "beforetoggle": Event;
8842
8849
"blur": FocusEvent;
8843
8850
"cancel": Event;
8844
8851
"canplay": Event;
@@ -8954,6 +8961,8 @@ interface GlobalEventHandlers {
8954
8961
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
8955
8962
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
8956
8963
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
8964
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
8965
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
8957
8966
/**
8958
8967
* Fires when the object loses the input focus.
8959
8968
* @param ev The focus event.
@@ -14641,7 +14650,7 @@ declare var MIDIAccess: {
14641
14650
*/
14642
14651
interface MIDIConnectionEvent extends Event {
14643
14652
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIConnectionEvent/port) */
14644
- readonly port: MIDIPort;
14653
+ readonly port: MIDIPort | null ;
14645
14654
}
14646
14655
14647
14656
declare var MIDIConnectionEvent: {
@@ -14693,7 +14702,7 @@ declare var MIDIInputMap: {
14693
14702
*/
14694
14703
interface MIDIMessageEvent extends Event {
14695
14704
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIMessageEvent/data) */
14696
- readonly data: Uint8Array;
14705
+ readonly data: Uint8Array | null ;
14697
14706
}
14698
14707
14699
14708
declare var MIDIMessageEvent: {
@@ -17727,6 +17736,7 @@ interface PublicKeyCredential extends Credential {
17727
17736
declare var PublicKeyCredential: {
17728
17737
prototype: PublicKeyCredential;
17729
17738
new(): PublicKeyCredential;
17739
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isConditionalMediationAvailable) */
17730
17740
isConditionalMediationAvailable(): Promise<boolean>;
17731
17741
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static) */
17732
17742
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
@@ -20072,6 +20082,8 @@ declare var SVGGraphicsElement: {
20072
20082
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement)
20073
20083
*/
20074
20084
interface SVGImageElement extends SVGGraphicsElement, SVGURIReference {
20085
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/crossorigin) */
20086
+ crossOrigin: string | null;
20075
20087
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/height) */
20076
20088
readonly height: SVGAnimatedLength;
20077
20089
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/SVGImageElement/preserveAspectRatio) */
@@ -27525,6 +27537,8 @@ declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null
27525
27537
declare var onauxclick: ((this: Window, ev: MouseEvent) => any) | null;
27526
27538
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
27527
27539
declare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
27540
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
27541
+ declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
27528
27542
/**
27529
27543
* Fires when the object loses the input focus.
27530
27544
* @param ev The focus event.
@@ -28186,7 +28200,7 @@ type MediaKeySessionClosedReason = "closed-by-application" | "hardware-context-r
28186
28200
type MediaKeySessionType = "persistent-license" | "temporary";
28187
28201
type MediaKeyStatus = "expired" | "internal-error" | "output-downscaled" | "output-restricted" | "released" | "status-pending" | "usable" | "usable-in-future";
28188
28202
type MediaKeysRequirement = "not-allowed" | "optional" | "required";
28189
- type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
28203
+ type MediaSessionAction = "enterpictureinpicture" | " nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
28190
28204
type MediaSessionPlaybackState = "none" | "paused" | "playing";
28191
28205
type MediaStreamTrackState = "ended" | "live";
28192
28206
type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
0 commit comments