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