UNPKG

316 BTypeScriptView Raw
1import { SchemaLoader } from './schema-loader';
2import { GraphQLSchema } from 'graphql';
3import { CLIOptions } from '../../cli-options';
4export declare class SchemaFromTypedefs implements SchemaLoader {
5 canHandle(globPath: string): boolean;
6 handle(globPath: string, cliOptions: CLIOptions): GraphQLSchema;
7}