UNPKG

@pact-foundation/pact

Version:
6 lines (5 loc) 357 B
import http from 'node:http'; import { type HooksState } from './hooks'; import type { ProxyOptions } from './types'; export declare const waitForServerReady: (server: http.Server) => Promise<http.Server>; export declare const createProxy: (config: ProxyOptions, stateSetupPath: string, messageTransportPath: string, hooksState: HooksState) => http.Server;