Support viewing multiple epochs

This commit is contained in:
Ayaz Hafiz 2023-08-02 17:48:32 -05:00
parent f3c0b54fe9
commit 66b6b8b53d
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
12 changed files with 672 additions and 369 deletions

View file

@ -14,3 +14,12 @@ export interface GraphMessage {
export interface EventListMessage {
focusEpoch: (epoch: EventEpoch) => void;
}
export enum LoadEpochView {
Top,
Bot,
}
export interface GlobalMessage {
loadEpoch: (epoch: EventEpoch, view: LoadEpochView) => void;
}