UNPKG

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