UNPKG

332 BTypeScriptView Raw
1import { Types } from 'graphql-codegen-core';
2import { SchemaLoader } from './schema-loader';
3import { GraphQLSchema } from 'graphql';
4export declare class SchemaFromTypedefs implements SchemaLoader {
5 canHandle(globPath: string): boolean;
6 handle(globPath: string, config: Types.Config, schemaOptions: any): GraphQLSchema;
7}