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