@pact-foundation/pact
Version:
Pact for all things Javascript
6 lines (5 loc) • 357 B
TypeScript
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;