Initial Save
This commit is contained in:
13
node_modules/@apollographql/apollo-tools/lib/buildServiceDefinition.d.ts
generated
vendored
Normal file
13
node_modules/@apollographql/apollo-tools/lib/buildServiceDefinition.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import { GraphQLSchema, DocumentNode, GraphQLError } from "graphql";
|
||||
import { GraphQLResolverMap } from "./schema/resolverMap";
|
||||
export interface GraphQLSchemaModule {
|
||||
typeDefs: DocumentNode;
|
||||
resolvers?: GraphQLResolverMap<any>;
|
||||
}
|
||||
interface GraphQLServiceDefinition {
|
||||
schema?: GraphQLSchema;
|
||||
errors?: GraphQLError[];
|
||||
}
|
||||
export declare function buildServiceDefinition(modules: (GraphQLSchemaModule | DocumentNode)[]): GraphQLServiceDefinition;
|
||||
export {};
|
||||
//# sourceMappingURL=buildServiceDefinition.d.ts.map
|
||||
Reference in New Issue
Block a user