mirror of
https://github.com/rjNemo/federation
synced 2026-06-10 12:06:40 +00:00
4 lines
247 B
TypeScript
4 lines
247 B
TypeScript
import { GraphQLSchema } from 'graphql';
|
|
import { IResolvers } from '../Interfaces';
|
|
declare function extendResolversFromInterfaces(schema: GraphQLSchema, resolvers: IResolvers): IResolvers<any, any>;
|
|
export default extendResolversFromInterfaces;
|