paste transform followup (#17624)

Co-authored-by: Jack Wotherspoon <jackwoth@google.com>
This commit is contained in:
Jacob Richman
2026-01-27 06:19:54 -08:00
committed by GitHub
parent 0dc69bd364
commit 362384112e
12 changed files with 539 additions and 440 deletions

View File

@@ -24,7 +24,11 @@ export type MouseEventName =
| 'scroll-down'
| 'scroll-left'
| 'scroll-right'
| 'move';
| 'move'
| 'double-click';
export const DOUBLE_CLICK_THRESHOLD_MS = 400;
export const DOUBLE_CLICK_DISTANCE_TOLERANCE = 2;
export interface MouseEvent {
name: MouseEventName;