mirror of
https://github.com/rjNemo/federation
synced 2026-06-06 02:06:39 +00:00
9 lines
No EOL
512 B
TypeScript
9 lines
No EOL
512 B
TypeScript
import { GraphQLSchema, GraphQLError } from 'graphql';
|
|
import { ServiceDefinition } from '../types';
|
|
export declare function validateServicesBeforeNormalization(services: ServiceDefinition[]): GraphQLError[];
|
|
export declare const validateServicesBeforeComposition: (services: ServiceDefinition[]) => GraphQLError[];
|
|
export declare const validateComposedSchema: ({ schema, serviceList, }: {
|
|
schema: GraphQLSchema;
|
|
serviceList: ServiceDefinition[];
|
|
}) => GraphQLError[];
|
|
//# sourceMappingURL=index.d.ts.map
|