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
/
types.ts
22 lines
(18 loc)
•
269 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import
{
States
}
from
'./states'
;
type
TProcessDTO
<T> = {
id
:
string
;
userId
:
string
;
process
:
string
;
step
:
number
;
state
:
States
;
vars
: T; };
type
TStatus
= {
process
:
string
;
step
:
number
;
state
:
States
; };
export
{
TProcessDTO
,
TStatus
};