/// import type { AttachMessageTransport } from "../types"; export type Write = (data: Buffer) => void; export type EndWrite = () => void; export type OnRead = (chunk: Buffer) => void; export type OnReadEnd = () => void; export type OnClose = (err?: Error) => void; export type AttachProcess = (onRead: OnRead, onReadEnd: OnReadEnd, onClose: OnClose) => [Write, EndWrite]; export default function newPipeMessageTransport(connect: AttachProcess): AttachMessageTransport; //# sourceMappingURL=newPipeMessageTransport.d.ts.map