@@ -2113,7 +2113,7 @@ interface WebTransportOptions {
2113
2113
}
2114
2114
2115
2115
interface WebTransportSendStreamOptions {
2116
- sendOrder?: number | null ;
2116
+ sendOrder?: number;
2117
2117
}
2118
2118
2119
2119
interface WheelEventInit extends MouseEventInit {
@@ -3052,6 +3052,7 @@ declare var BaseAudioContext: {
3052
3052
* [MDN Reference](https://developer.mozilla.org/docs/Web/API/BeforeUnloadEvent)
3053
3053
*/
3054
3054
interface BeforeUnloadEvent extends Event {
3055
+ /** @deprecated */
3055
3056
returnValue: any;
3056
3057
}
3057
3058
@@ -3709,6 +3710,8 @@ interface CSSRule {
3709
3710
readonly KEYFRAMES_RULE: 7;
3710
3711
readonly KEYFRAME_RULE: 8;
3711
3712
readonly SUPPORTS_RULE: 12;
3713
+ readonly COUNTER_STYLE_RULE: 11;
3714
+ readonly FONT_FEATURE_VALUES_RULE: 14;
3712
3715
}
3713
3716
3714
3717
declare var CSSRule: {
@@ -3724,6 +3727,8 @@ declare var CSSRule: {
3724
3727
readonly KEYFRAMES_RULE: 7;
3725
3728
readonly KEYFRAME_RULE: 8;
3726
3729
readonly SUPPORTS_RULE: 12;
3730
+ readonly COUNTER_STYLE_RULE: 11;
3731
+ readonly FONT_FEATURE_VALUES_RULE: 14;
3727
3732
};
3728
3733
3729
3734
/**
@@ -8839,6 +8844,7 @@ interface GlobalEventHandlersEventMap {
8839
8844
"animationstart": AnimationEvent;
8840
8845
"auxclick": MouseEvent;
8841
8846
"beforeinput": InputEvent;
8847
+ "beforetoggle": Event;
8842
8848
"blur": FocusEvent;
8843
8849
"cancel": Event;
8844
8850
"canplay": Event;
@@ -8954,6 +8960,8 @@ interface GlobalEventHandlers {
8954
8960
onauxclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null;
8955
8961
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
8956
8962
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;
8957
8965
/**
8958
8966
* Fires when the object loses the input focus.
8959
8967
* @param ev The focus event.
@@ -14641,7 +14649,7 @@ declare var MIDIAccess: {
14641
14649
*/
14642
14650
interface MIDIConnectionEvent extends Event {
14643
14651
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIConnectionEvent/port) */
14644
- readonly port: MIDIPort;
14652
+ readonly port: MIDIPort | null ;
14645
14653
}
14646
14654
14647
14655
declare var MIDIConnectionEvent: {
@@ -14693,7 +14701,7 @@ declare var MIDIInputMap: {
14693
14701
*/
14694
14702
interface MIDIMessageEvent extends Event {
14695
14703
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/MIDIMessageEvent/data) */
14696
- readonly data: Uint8Array;
14704
+ readonly data: Uint8Array | null ;
14697
14705
}
14698
14706
14699
14707
declare var MIDIMessageEvent: {
@@ -17727,6 +17735,7 @@ interface PublicKeyCredential extends Credential {
17727
17735
declare var PublicKeyCredential: {
17728
17736
prototype: PublicKeyCredential;
17729
17737
new(): PublicKeyCredential;
17738
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isConditionalMediationAvailable) */
17730
17739
isConditionalMediationAvailable(): Promise<boolean>;
17731
17740
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/PublicKeyCredential/isUserVerifyingPlatformAuthenticatorAvailable_static) */
17732
17741
isUserVerifyingPlatformAuthenticatorAvailable(): Promise<boolean>;
@@ -27525,6 +27534,8 @@ declare var onanimationstart: ((this: Window, ev: AnimationEvent) => any) | null
27525
27534
declare var onauxclick: ((this: Window, ev: MouseEvent) => any) | null;
27526
27535
/** [MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/beforeinput_event) */
27527
27536
declare 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;
27528
27539
/**
27529
27540
* Fires when the object loses the input focus.
27530
27541
* @param ev The focus event.
0 commit comments