This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/@graphql-tools/git-loader/parse.d.ts

11 lines
236 B
TypeScript

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