- added functionality to save sighting sessions to black board

This commit is contained in:
2025-10-27 08:28:44 +00:00
parent 9975e6a6ca
commit 18534ceb2c
5 changed files with 87 additions and 21 deletions

View File

@@ -379,3 +379,17 @@ export type QueuedHit = {
sighting: SightingType;
kind: HitKind;
};
export type DedupedSightings = ReducedSightingType[];
export type NPEDSTATE = {
sessionStarted: boolean;
sessionList: ReducedSightingType[];
sessionPaused: boolean;
savedSightings: DedupedSightings;
};
export type NPEDACTION = {
type: string;
payload: any;
};