@@ -2113,7 +2113,7 @@ interface WebTransportOptions {
21132113}
21142114
21152115interface WebTransportSendStreamOptions {
2116- sendOrder?: number | null ;
2116+ sendOrder?: number;
21172117}
21182118
21192119interface WheelEventInit extends MouseEventInit {
@@ -3052,6 +3052,7 @@ declare var BaseAudioContext: {
30523052 * [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent)
30533053 */
30543054interface BeforeUnloadEvent extends Event {
3055+ /** @deprecated */
30553056 returnValue: any;
30563057}
30573058
@@ -3709,6 +3710,8 @@ interface CSSRule {
37093710 readonly KEYFRAMES_RULE: 7;
37103711 readonly KEYFRAME_RULE: 8;
37113712 readonly SUPPORTS_RULE: 12;
3713+ readonly COUNTER_STYLE_RULE: 11;
3714+ readonly FONT_FEATURE_VALUES_RULE: 14;
37123715}
37133716
37143717declare var CSSRule: {
@@ -3724,6 +3727,8 @@ declare var CSSRule: {
37243727 readonly KEYFRAMES_RULE: 7;
37253728 readonly KEYFRAME_RULE: 8;
37263729 readonly SUPPORTS_RULE: 12;
3730+ readonly COUNTER_STYLE_RULE: 11;
3731+ readonly FONT_FEATURE_VALUES_RULE: 14;
37273732};
37283733
37293734/**
@@ -8839,6 +8844,7 @@ interface GlobalEventHandlersEventMap {
88398844 "animationstart": AnimationEvent;
88408845 "auxclick": MouseEvent;
88418846 "beforeinput": InputEvent;
8847+ "beforetoggle": Event;
88428848 "blur": FocusEvent;
88438849 "cancel": Event;
88448850 "canplay": Event;
@@ -8954,6 +8960,8 @@ interface GlobalEventHandlers {
89548960 onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
89558961 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
89568962 onbeforeinput: ((this: GlobalEventHandlers, ev: InputEvent) => any) | null;
8963+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
8964+ onbeforetoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null;
89578965 /**
89588966 * Fires when the object loses the input focus.
89598967 * @param ev The focus event.
@@ -14641,7 +14649,7 @@ declare var MIDIAccess: {
1464114649 */
1464214650interface MIDIConnectionEvent extends Event {
1464314651 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIConnectionEvent/port) */
14644- readonly port: MIDIPort;
14652+ readonly port: MIDIPort | null ;
1464514653}
1464614654
1464714655declare var MIDIConnectionEvent: {
@@ -14693,7 +14701,7 @@ declare var MIDIInputMap: {
1469314701 */
1469414702interface MIDIMessageEvent extends Event {
1469514703 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIMessageEvent/data) */
14696- readonly data: Uint8Array;
14704+ readonly data: Uint8Array | null ;
1469714705}
1469814706
1469914707declare var MIDIMessageEvent: {
@@ -17727,6 +17735,7 @@ interface PublicKeyCredential extends Credential {
1772717735declare var PublicKeyCredential: {
1772817736 prototype: PublicKeyCredential;
1772917737 new(): PublicKeyCredential;
17738+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isConditionalMediationAvailable) */
1773017739 isConditionalMediationAvailable(): Promise<boolean>;
1773117740 /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static) */
1773217741 isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
@@ -27525,6 +27534,8 @@ declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null
2752527534declare var onauxclick: ((this: Window, ev: MouseEvent) => any) | null;
2752627535/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
2752727536declare var onbeforeinput: ((this: Window, ev: InputEvent) => any) | null;
27537+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforetoggle_event) */
27538+ declare var onbeforetoggle: ((this: Window, ev: Event) => any) | null;
2752827539/**
2752927540 * Fires when the object loses the input focus.
2753027541 * @param ev The focus event.
0 commit comments