Better epoch selection

This commit is contained in:
Ayaz Hafiz 2023-08-02 14:37:01 -05:00
parent a5eaba9ab3
commit 43e2f2f091
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
10 changed files with 341 additions and 166 deletions

View file

@ -0,0 +1,16 @@
import { EventEpoch } from "../engine/engine";
import { Variable } from "../schema";
export interface VariableMessage {
focus: (variable: Variable) => void;
}
export interface GraphMessage {
focusEpoch: (epoch: EventEpoch) => void;
focusVariable: (variable: Variable) => void;
keydown: (key: string) => void;
}
export interface EventListMessage {
focusEpoch: (epoch: EventEpoch) => void;
}