Files
var-monorepo/apps/dispatch/app/_helpers/hpgStateToFmsStatus.ts

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";
};