@zuu/owl
Version:
Zuu's Experimental GraphQL Implementation
8 lines (7 loc) • 397 B
TypeScript
import { GraphQLSchema } from "graphql";
import { SchemaGeneratorOptions } from "../schema/schema-generator";
export interface BuildSchemaOptions extends SchemaGeneratorOptions {
resolvers: Array<Function | string>;
}
export declare function buildSchema(options: BuildSchemaOptions): Promise<GraphQLSchema>;
export declare function buildSchemaSync(options: BuildSchemaOptions): GraphQLSchema;