UNPKG
@project-rwc/rwc
Version:
latest (0.1.0)
0.1.0
Common types & utilities for Project RWC
github.com/ProjectRwc/node-rwc
ProjectRwc/node-rwc
@project-rwc/rwc
/
dist
/
job
/
Job.d.ts
12 lines
(11 loc)
•
240 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
JobPipelineStep
}
from
"./JobPipelineStep"
;
export
declare
type
Job
= {
steps
: { [
uuid
:
string
]:
JobPipelineStep
; };
output
: { [
slot
:
string
]: {
from
:
string
; }; }; };