import { Transport } from "./transport.mjs"; import { ExpandedDuplexTransportConfiguration } from "../../config/expanded.mjs"; import { Duplex } from "node:stream"; //#region src/client/transport/duplex-transport.d.ts declare class DuplexTransport implements Transport { readonly stream: Duplex; constructor(config: ExpandedDuplexTransportConfiguration); connect(connectionListener?: () => void): void; } //#endregion export { DuplexTransport }; //# sourceMappingURL=duplex-transport.d.mts.map