UNPKG

@graphql-mesh/serve-runtime

Version:
7 lines (6 loc) 509 B
import type { Agent as HttpAgent } from 'http'; import type { Agent as HttpsAgent } from 'https'; import type { OnFetchHookPayload } from '@graphql-mesh/types'; import type { GatewayContext, GatewayPlugin } from '../types'; export type AgentFactory<TContext> = (payload: OnFetchHookPayload<Partial<TContext> & GatewayContext & Record<string, any>>) => HttpAgent | HttpsAgent | false | undefined; export declare function useCustomAgent<TContext>(agentFactory: AgentFactory<TContext>): GatewayPlugin<TContext>;