@@ -563,6 +563,8 @@ interface GainOptions extends AudioNodeOptions {
563563
564564interface GamepadEffectParameters {
565565 duration?: number;
566+ leftTrigger?: number;
567+ rightTrigger?: number;
566568 startDelay?: number;
567569 strongMagnitude?: number;
568570 weakMagnitude?: number;
@@ -1365,8 +1367,8 @@ interface RTCIceCandidateInit {
13651367}
13661368
13671369interface RTCIceCandidatePair {
1368- local? : RTCIceCandidate;
1369- remote? : RTCIceCandidate;
1370+ local: RTCIceCandidate;
1371+ remote: RTCIceCandidate;
13701372}
13711373
13721374interface RTCIceCandidatePairStats extends RTCStats {
@@ -1783,6 +1785,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {
17831785interface ShadowRootInit {
17841786 delegatesFocus?: boolean;
17851787 mode: ShadowRootMode;
1788+ serializable?: boolean;
17861789 slotAssignment?: SlotAssignmentMode;
17871790}
17881791
@@ -28451,7 +28454,7 @@ type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
2845128454type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
2845228455type FontFaceSetLoadStatus = "loaded" | "loading";
2845328456type FullscreenNavigationUI = "auto" | "hide" | "show";
28454- type GamepadHapticEffectType = "dual-rumble";
28457+ type GamepadHapticEffectType = "dual-rumble" | "trigger-rumble" ;
2845528458type GamepadHapticsResult = "complete" | "preempted";
2845628459type GamepadMappingType = "" | "standard" | "xr-standard";
2845728460type GlobalCompositeOperation = "color" | "color-burn" | "color-dodge" | "copy" | "darken" | "destination-atop" | "destination-in" | "destination-out" | "destination-over" | "difference" | "exclusion" | "hard-light" | "hue" | "lighten" | "lighter" | "luminosity" | "multiply" | "overlay" | "saturation" | "screen" | "soft-light" | "source-atop" | "source-in" | "source-out" | "source-over" | "xor";
0 commit comments