Handle case where user stops scrubbing but remains hovering (#12794)

* Handle case where user stops scrubbing but remains hovering

* Add type
This commit is contained in:
Nicolas Mowen
2024-08-06 14:15:00 -06:00
parent 54e1bd9eeb
commit 9c2974438d
2 changed files with 94 additions and 56 deletions

View File

@@ -26,3 +26,5 @@ export type Timeline = {
export type TimeRange = { before: number; after: number };
export type TimelineType = "timeline" | "events";
export type TimelineScrubMode = "auto" | "drag" | "hover" | "compat";