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/code-file-loader/es5/exports.d.ts

16 lines
394 B
TypeScript

import { DocumentNode, GraphQLSchema } from 'graphql';
/**
* @internal
*/
export declare function pickExportFromModule({ module, filepath }: {
module: any;
filepath: string;
}): Promise<GraphQLSchema | DocumentNode>;
/**
* @internal
*/
export declare function pickExportFromModuleSync({ module, filepath }: {
module: any;
filepath: string;
}): GraphQLSchema | DocumentNode;