UNPKG

350 BTypeScriptView Raw
1import { GetMeshSourceOptions, MeshHandler, MeshSource, YamlConfig } from '@graphql-mesh/types';
2export default class GraphQLHandler implements MeshHandler {
3 private name;
4 private config;
5 private cache;
6 constructor({ name, config, cache }: GetMeshSourceOptions<YamlConfig.GraphQLHandler>);
7 getMeshSource(): Promise<MeshSource>;
8}