27 lines
469 B
TypeScript
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",
|
|
}
|