UNPKG

398 BTypeScriptView Raw
1import { IntrospectionSchema } from "graphql";
2import { EndpointConfig } from "./config";
3export declare const fetchSchema: ({ url, headers, skipSSLValidation }: EndpointConfig, projectFolder?: string | undefined) => Promise<IntrospectionSchema | undefined>;
4export declare function fetchSchemaFromEngine(apiKey: string, customEngine: string | undefined): Promise<IntrospectionSchema | undefined>;