UNPKG

@graphql-tools/git-loader

Version:

A set of utils for faster development of GraphQL tools

11 lines (10 loc) 285 B
import { GraphQLParseOptions, Source } from '@graphql-tools/utils'; /** * @internal */ export declare function parse<T extends GraphQLParseOptions>({ path, pointer, content, options, }: { path: string; pointer: string; content: string; options: T; }): Source | void;