UNPKG

graphql-modules

Version:

Create reusable, maintainable, testable and extendable GraphQL modules

12 lines (11 loc) 269 B
import { Type } from './providers'; export declare class Key { token: Type<any>; id: number; constructor(token: Type<any>, id: number); /** * Returns a stringified token. */ get displayName(): string; static get(token: Object): Key; }