UNPKG
ontime-pm
Version:
latest (1.0.0)
1.0.0
Ontime Process Manager
github.com/OntimeLengo/ontime-pm.git
OntimeLengo/ontime-pm
ontime-pm
/
src
/
states.ts
13 lines
(11 loc)
•
164 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
enum
States { START =
'start'
, IN_PROGRESS =
'in-progress'
, PAUSE =
'pause'
,
CANCEL
=
'cancel'
, ERROR =
'error'
, DONE =
'done'
};
export
{ States };