UNPKG
@grapi/server
Version:
latest (3.0.6)
3.0.6
3.0.5
3.0.4
3.0.3
3.0.2
3.0.1
3.0.0
2.2.10
2.2.4
2.2.3
Grapi Schema Generator For GraphQL Server
github.com/scalars/grapi
scalars/grapi
@grapi/server
/
lib
/
sdlParser
/
inputValue
/
listValue.d.ts
11 lines
(10 loc)
•
296 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{
InputValue
}
from
'./interface'
;
export
default
class
ListValue
implements
InputValue
<
InputValue
[]> {
private
values;
constructor
(
{ values }: { values:
Array
<InputValue<
any
>>; }
);
isScalar
():
boolean
;
getType
():
any
;
getValue
():
Array
<
InputValue
<
any
>>; }