UNPKG
json-express
Version:
latest (2.3.4)
2.3.4
2.3.3
2.3.2
2.3.1
2.3.0
2.2.3
2.2.2
2.2.1
2.2.0
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Parse JSON expression and transform into another forms.
github.com/elfrog/json-express
json-express
/
lib
/
build-type.d.ts
13 lines
(12 loc)
•
271 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
interface
BuildTypeRecord
{ [
key
:
string
]:
BuildType
; }
declare
class
BuildType
{
type
:
string
;
record
:
BuildTypeRecord
;
children
:
BuildType
[];
optional
:
boolean
;
constructor
(
value
:
string
); }
export
default
BuildType
;
export
{
BuildTypeRecord
};