UNPKG
@eurostat/vtl-editor
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
VTL editor based on Monaco
github.com/eurostat/vtl-editor
eurostat/vtl-editor
@eurostat/vtl-editor
/
src
/
model
/
dataStructure.ts
16 lines
(14 loc)
•
287 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export
interface
DataStructureInfo
{ registryId:
string
; agencyId:
string
; id:
string
; version:
string
; name:
string
; isFinal: FinalStructureEnum; } export
enum
FinalStructureEnum
{
TRUE
=
"TRUE"
,
FALSE
=
"FALSE"
, UNSET =
"UNSET"
, ALL =
"ALL"
, }