UNPKG

424 BTypeScriptView Raw
1import { GraphQLSchema } from 'graphql';
2import { SchemaLoader } from './schema-loader';
3import { CLIOptions } from '../../cli-options';
4export declare class IntrospectionFromFileLoader implements SchemaLoader {
5 stripBOM(content: string): string;
6 parseBOM(content: string): any;
7 canHandle(pointerToSchema: string): boolean;
8 handle(pointerToSchema: string, _cliOptions: CLIOptions): Promise<GraphQLSchema>;
9}