UNPKG
@scalenc/tmt-format
Version:
latest (1.3.0)
1.3.0
1.2.3
1.2.2
Library for handling TRUMPF TMT file format.
github.com/scalenc/tmt-format
scalenc/tmt-format
@scalenc/tmt-format
/
dist
/
model
/
Domain.d.ts
9 lines
(8 loc)
•
194 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
Section
}
from
'./Section'
;
import
{
Value
}
from
'./Value'
;
export
interface
Domain
{
name
:
string
;
values
?:
Value
[][];
sections
:
Section
[];
endWhitespaces
?:
string
; }