Files
entity/src/types/gps.ts
fro1991 41fb37dba9 update
2025-10-03 09:49:22 +07:00

27 lines
469 B
TypeScript

export enum GpsActionType {
"login" = "login",
"heartbeat" = "heartbeat",
"location" = "location",
"other" = "other",
}
export enum GpsIgnitionStatus {
"on" = "on",
"off" = "off",
"acc_low" = "acc_low",
"acc_high" = "acc_high",
}
export enum GpsEngineStatus {
"idling" = "idling",
"moving" = "moving",
"stopping" = "stopping",
}
export enum GpsReverseGeoStatus {
"pending" = "pending",
"process" = "process",
"success" = "success",
"fail" = "fail",
}