UNPKG

@kamilkisiela/graphql-tools

Version:

Useful tools to create and manipulate GraphQL schemas.

5 lines (4 loc) 247 B
import { GraphQLSchema } from 'graphql'; import { IResolvers } from '../Interfaces'; declare function extendResolversFromInterfaces(schema: GraphQLSchema, resolvers: IResolvers): IResolvers<any, any>; export default extendResolversFromInterfaces;