@@ -563,6 +563,8 @@ interface GainOptions extends AudioNodeOptions {
563
563
564
564
interface GamepadEffectParameters {
565
565
duration?: number;
566
+ leftTrigger?: number;
567
+ rightTrigger?: number;
566
568
startDelay?: number;
567
569
strongMagnitude?: number;
568
570
weakMagnitude?: number;
@@ -1365,8 +1367,8 @@ interface RTCIceCandidateInit {
1365
1367
}
1366
1368
1367
1369
interface RTCIceCandidatePair {
1368
- local? : RTCIceCandidate;
1369
- remote? : RTCIceCandidate;
1370
+ local: RTCIceCandidate;
1371
+ remote: RTCIceCandidate;
1370
1372
}
1371
1373
1372
1374
interface RTCIceCandidatePairStats extends RTCStats {
@@ -1783,6 +1785,7 @@ interface SecurityPolicyViolationEventInit extends EventInit {
1783
1785
interface ShadowRootInit {
1784
1786
delegatesFocus?: boolean;
1785
1787
mode: ShadowRootMode;
1788
+ serializable?: boolean;
1786
1789
slotAssignment?: SlotAssignmentMode;
1787
1790
}
1788
1791
@@ -28451,7 +28454,7 @@ type FontDisplay = "auto" | "block" | "fallback" | "optional" | "swap";
28451
28454
type FontFaceLoadStatus = "error" | "loaded" | "loading" | "unloaded";
28452
28455
type FontFaceSetLoadStatus = "loaded" | "loading";
28453
28456
type FullscreenNavigationUI = "auto" | "hide" | "show";
28454
- type GamepadHapticEffectType = "dual-rumble";
28457
+ type GamepadHapticEffectType = "dual-rumble" | "trigger-rumble" ;
28455
28458
type GamepadHapticsResult = "complete" | "preempted";
28456
28459
type GamepadMappingType = "" | "standard" | "xr-standard";
28457
28460
type 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