- refactored to allow for stacking of special hits (NPED + Hotlist)
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user