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