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
/
table-editor
/
table-config.ts
10 lines
(9 loc)
•
165 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
interface
IColumns
{
key
:
string
;
title
:
string
; }
export
interface
ITableConfig
{
columns
:
IColumns
[];
tableTitle
:
string
;
addBtnLabel
:
string
; }