This commit is contained in:
fro1991
2025-10-02 14:23:42 +07:00
parent ccd79ac90d
commit e02a102f17
3 changed files with 118 additions and 0 deletions

26
src/types/gps.ts Normal file
View File

@ -0,0 +1,26 @@
export enum GpsActionType {
"login" = "login",
"hearthbeat" = "hearthbeat",
"location" = "location",
"other" = "other",
}
export enum GpsIgnitionStatus {
"on" = "on",
"off" = "off",
"acc_low" = "acc_low",
"ac_high" = "ac_high",
}
export enum GpsEngineStatus {
"idling" = "idling",
"moving" = "moving",
"stopping" = "stopping",
}
export enum GpsReverseGeoStatus {
"pending" = "pending",
"process" = "process",
"success" = "success",
"fail" = "fail",
}