@pact-foundation/pact
Version:
Pact for all things Javascript
10 lines (9 loc) • 319 B
TypeScript
/**
* Network module.
* @module net
* @private
*/
export declare const localAddresses: string[];
export declare const portCheck: (port: number, host: string) => Promise<void>;
export declare const isPortAvailable: (port: number, host: string) => Promise<void>;
export declare const freePort: () => Promise<number>;