12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
import { HpgState } from "@repo/db";
|
|
|
|
export const hpgStateToFMSStatus = (state: HpgState): string => {
|
|
if (state === "DISPATCHED") {
|
|
return "3";
|
|
}
|
|
if (state === "ON_SCENE") {
|
|
return "4";
|
|
}
|
|
return "2";
|
|
};
|