(
message: string,
details: Record<string, unknown> = {},
)
| 315 | * Vertical three-finger swipe movement multiplier for workspace switching. |
| 316 | */ |
| 317 | workspaceSwitchFactor?: number; |
| 318 | /** |
| 319 | * Vertical release velocity multiplier for deciding whether to commit a |
| 320 | * workspace switch. Defaults to workspaceSwitchFactor when omitted. |
| 321 | */ |
| 322 | workspaceSwitchVelocityFactor?: number; |
| 323 | /** |
| 324 | * At or below this scroll speed (logical px/s of workspace movement) a |
| 325 | * three-finger workspace scroll catches on tile snap positions — the |
| 326 | * offsets where a tile sits fully on screen at the viewport edge |
| 327 | * (TILE_MARGIN gap), or centered for maximized tiles. Faster scrolling |
| 328 | * passes straight through. Applies to both the active gesture and the |
no test coverage detected