update
This commit is contained in:
26
src/types/gps.ts
Normal file
26
src/types/gps.ts
Normal 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",
|
||||
}
|
||||
Reference in New Issue
Block a user