- refactored to allow for stacking of special hits (NPED + Hotlist)

This commit is contained in:
2025-10-24 10:49:04 +01:00
parent a958901bed
commit 359f3781f2
4 changed files with 64 additions and 41 deletions

View File

@@ -371,3 +371,11 @@ export type ModemSettingsType = {
password: string;
authenticationType: string;
};
export type HitKind = "NPED" | "HOTLIST";
export type QueuedHit = {
id: number | string;
sighting: SightingType;
kind: HitKind;
};