UNPKG

@graphql-hive/core

Version:
15 lines 493 B
import { Logger } from '@graphql-hive/logger'; import type { LegacyLogger } from './types.js'; export interface SupergraphSDLFetcherOptions { endpoint: string; key: string; logger?: LegacyLogger | Logger; fetchImplementation?: typeof fetch; name?: string; version?: string; } export declare function createSupergraphSDLFetcher(options: SupergraphSDLFetcherOptions): () => Promise<{ id: string; supergraphSdl: string; }>; //# sourceMappingURL=supergraph.d.ts.map