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/load/load-typedefs/parse.d.ts

12 lines
418 B
TypeScript

import { Source } from '@graphql-tools/utils';
declare type AddValidSource = (source: Source) => void;
declare type ParseOptions = {
partialSource: Partial<Source>;
options: any;
globOptions: any;
pointerOptionMap: any;
addValidSource: AddValidSource;
};
export declare function parseSource({ partialSource, options, globOptions, pointerOptionMap, addValidSource }: ParseOptions): void;
export {};