@graphql-hive/core
Version:
11 lines • 344 B
TypeScript
import type { Logger } from './types.js';
export interface SupergraphSDLFetcherOptions {
endpoint: string;
key: string;
logger?: Logger;
}
export declare function createSupergraphSDLFetcher(options: SupergraphSDLFetcherOptions): () => Promise<{
id: string;
supergraphSdl: string;
}>;
//# sourceMappingURL=supergraph.d.ts.map