UNPKG

335 BTypeScriptView Raw
1import { SchemaLoader } from './schema-loader';
2import { GraphQLSchema } from 'graphql';
3import { CLIOptions } from '../../cli-options';
4export declare class IntrospectionFromUrlLoader implements SchemaLoader {
5 canHandle(pointerToSchema: string): boolean;
6 handle(url: string, cliOptions: CLIOptions): Promise<GraphQLSchema>;
7}