@xhub-short/contracts 1.0.0-beta.22 → 1.0.0-beta.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2059,6 +2059,12 @@ interface VideoSlotHeadlessProps {
|
|
|
2059
2059
|
onSpeedReset?: () => void;
|
|
2060
2060
|
/** Called when speed is locked via pull-down gesture while boosted */
|
|
2061
2061
|
onSpeedLock?: (speed: number) => void;
|
|
2062
|
+
/** Speed multiplier for speed boost (default: 2) */
|
|
2063
|
+
speedBoostSpeed?: number;
|
|
2064
|
+
/** Hold delay in ms before speed boost activates (default: 2000) */
|
|
2065
|
+
speedBoostHoldDelay?: number;
|
|
2066
|
+
/** Pull-down distance in px to trigger speed lock (default: 50) */
|
|
2067
|
+
speedBoostPullDownThreshold?: number;
|
|
2062
2068
|
}
|
|
2063
2069
|
/**
|
|
2064
2070
|
* VideoPlayer headless component props
|