UNPKG
pipeline-builder-demo
Version:
dev (0.2.1-dev)
latest (0.2.1-dev)
0.2.1-dev
Pipeline Builder
github.com/epam/pipeline-builder
epam/pipeline-builder
pipeline-builder-demo
/
src
/
app
/
graphical-editor
/
tool-option-dialog
/
tool-option.ts
14 lines
(13 loc)
•
235 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
interface
IPort
{
_name
:
string
;
name
:
string
;
value
?:
string
;
type
?:
string
; }
export
interface
IToolOptions
{
name
:
string
;
alias
?:
string
;
command
:
string
;
variables
:
IPort
[];
outputs
:
IPort
[]; }