@@ -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
/**
@@ -8839,6 +8843,7 @@ interface GlobalEventHandlersEventMap {
8839
8843
"animationstart": AnimationEvent;
8840
8844
"auxclick": MouseEvent;
8841
8845
"beforeinput": InputEvent;
8846
+ "beforetoggle": Event;
8842
8847
"blur": FocusEvent;
8843
8848
"cancel": Event;
8844
8849
"canplay": Event;
@@ -8954,6 +8959,8 @@ interface GlobalEventHandlers {
8954
8959
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
8955
8960
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
8956
8961
onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
8962
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
8963
+ onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
8957
8964
/**
8958
8965
* Fires when the object loses the input focus.
8959
8966
* @param ev The focus event.
@@ -14641,7 +14648,7 @@ declare var MIDIAccess: {
14641
14648
*/
14642
14649
interface MIDIConnectionEvent extends Event {
14643
14650
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIConnectionEvent/port) */
14644
- readonly port: MIDIPort;
14651
+ readonly port: MIDIPort | null ;
14645
14652
}
14646
14653
14647
14654
declare var MIDIConnectionEvent: {
@@ -14693,7 +14700,7 @@ declare var MIDIInputMap: {
14693
14700
*/
14694
14701
interface MIDIMessageEvent extends Event {
14695
14702
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIMessageEvent/data) */
14696
- readonly data: Uint8Array;
14703
+ readonly data: Uint8Array | null ;
14697
14704
}
14698
14705
14699
14706
declare var MIDIMessageEvent: {
@@ -17727,6 +17734,7 @@ interface PublicKeyCredential extends Credential {
17727
17734
declare var PublicKeyCredential: {
17728
17735
prototype: PublicKeyCredential;
17729
17736
new(): PublicKeyCredential;
17737
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isConditionalMediationAvailable) */
17730
17738
isConditionalMediationAvailable(): Promise<boolean>;
17731
17739
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static) */
17732
17740
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
@@ -27525,6 +27533,8 @@ declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null
27525
27533
declare var onauxclick: ((this: Window, ev: MouseEvent) => any) | null;
27526
27534
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
27527
27535
declare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
27536
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
27537
+ declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
27528
27538
/**
27529
27539
* Fires when the object loses the input focus.
27530
27540
* @param ev The focus event.
@@ -28186,7 +28196,7 @@ type MediaKeySessionClosedReason = "closed-by-application" | "hardware-context-r
28186
28196
type MediaKeySessionType = "persistent-license" | "temporary";
28187
28197
type MediaKeyStatus = "expired" | "internal-error" | "output-downscaled" | "output-restricted" | "released" | "status-pending" | "usable" | "usable-in-future";
28188
28198
type MediaKeysRequirement = "not-allowed" | "optional" | "required";
28189
- type MediaSessionAction = "nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
28199
+ type MediaSessionAction = "enterpictureinpicture" | " nexttrack" | "pause" | "play" | "previoustrack" | "seekbackward" | "seekforward" | "seekto" | "skipad" | "stop";
28190
28200
type MediaSessionPlaybackState = "none" | "paused" | "playing";
28191
28201
type MediaStreamTrackState = "ended" | "live";
28192
28202
type NavigationTimingType = "back_forward" | "navigate" | "prerender" | "reload";
0 commit comments