UNPKG
@snowtop/ent-graphql-tests
Version:
latest (0.1.0)
0.1.0
0.1.0-rc1
0.1.0-alpha7
0.1.0-alpha6
0.1.0-alpha5
0.1.0-alpha4
0.1.0-alpha3
0.1.0-alpha2
0.1.0-alpha1
0.1.0-alpha
0.0.4
0.0.3
0.0.2
0.0.1
easy ways to test ent and graphql
github.com/lolopinto/ent
lolopinto/ent
@snowtop/ent-graphql-tests
/
dist
/
test.d.ts
13 lines
(12 loc)
•
280 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
interface
Node
{
id
:
string
; }
declare
class
Contact
implements
Node
{
id
:
string
;
firstName
:
string
;
lastName
:
string
;
emailAddress
:
string
;
phoneNumber
:
string
; }
export
declare
const
names
:
Partial
<
Pick
<
Contact
,
"firstName"
|
"lastName"
>>[];
export
{};