import http2 from "http2"; import { Socket, Server as SocketServer } from "net"; /** * Http2IPCProxyReceiver class creates a simple socket server, this server * can only receive incoming sockets IPC Unix socket only. * IPC sockets have no way to distinguish remote clients, so they will first * send a remote IP Address terminated by new line character. * * And then they will start further communication. */ export default class Http2IPCProxyReceiver { private forward; server: SocketServer; onConnection: (socket: Socket) => Promise; constructor(forward: http2.Http2SecureServer); listen(port: any, listener?: any): SocketServer; } //# sourceMappingURL=Http2IPCProxyReceiver.d.ts.map