UNPKG
gql-query-builder
Version:
latest (3.8.0)
3.8.0
3.7.2
3.7.1
3.7.0
3.6.0
3.5.9
3.5.8
3.5.7
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.4.1
3.4.0
3.3.0
3.2.0
3.1.3
3.1.2
3.1.1
3.1.0
3.0.7
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.0.2
2.0.1
2.0.0
1.0.10
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Simple GraphQL Query Builder
github.com/atulmy/gql-query-builder
atulmy/gql-query-builder
gql-query-builder
/
build
/
VariableOptions.d.ts
11 lines
(10 loc)
•
206 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
declare
type
VariableOptions
= {
type
?:
string
;
name
?:
string
;
value
:
any
;
list
?:
boolean
| [
boolean
];
required
?:
boolean
; } | { [
k
:
string
]:
any
; };
export
default
VariableOptions
;