UNPKG

227 BTypeScriptView Raw
1import { ParseOptions, DocumentNode } from 'graphql';
2export declare function parseGraphQLSDL(location: string, rawSDL: string, options: ParseOptions): {
3 location: string;
4 document: DocumentNode;
5 rawSDL: string;
6};