mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 19:46:40 +00:00
4 lines
258 B
TypeScript
4 lines
258 B
TypeScript
import { GraphQLSchema } from 'graphql';
|
|
import { IDirectiveResolvers } from '../Interfaces';
|
|
declare function attachDirectiveResolvers(schema: GraphQLSchema, directiveResolvers: IDirectiveResolvers<any, any>): void;
|
|
export default attachDirectiveResolvers;
|