mirror of
https://github.com/rjNemo/federation
synced 2026-06-09 11:36:39 +00:00
4 lines
280 B
TypeScript
4 lines
280 B
TypeScript
import { GraphQLSchema } from 'graphql';
|
|
import { IResolverValidationOptions } from '../Interfaces';
|
|
declare function assertResolveFunctionsPresent(schema: GraphQLSchema, resolverValidationOptions?: IResolverValidationOptions): void;
|
|
export default assertResolveFunctionsPresent;
|