UNPKG

@snowtop/ent-graphql-tests

Version:

easy ways to test ent and graphql

13 lines (12 loc) 280 B
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 {};