- added functionality to save sighting sessions to black board
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user