//#region src/net/socket.d.ts interface SocketAddress { host: string; port: number; } //#endregion //#region src/net/waitFor.d.ts /** * Wait for a resource to start listening on a socket address. * * The socket is polled on an interval until it accepts a connection or the * `timeout` is reached. */ declare const waitFor: ({ host, port, resolveCompose, timeout }: { host?: string; port: number; /** * Whether to treat the `host` and `port` arguments as a private Docker * Compose network address and to resolve them to a public local address. * * This is typically: * * - Enabled locally, when the application is running directly on the machine * - Disabled in CI, when running in a container on the Docker Compose network */ resolveCompose?: boolean; timeout?: number; }) => Promise; declare namespace index_d_exports { export { waitFor }; } //#endregion export { waitFor as n, index_d_exports as t };