UNPKG

dbus-sdk

Version:

A Node.js SDK for interacting with DBus, enabling seamless service calling and exposure with TypeScript support

15 lines 632 B
import { Duplex } from 'node:stream'; import { CommonConnectOpts } from './CommonConnectOpts'; /** * Interface defining options for connecting to a DBus service using a stream. * Used to specify a duplex stream for communication with the DBus. * Extends CommonConnectOpts to include shared connection settings alongside stream-specific options. */ export interface StreamConnectOpts extends CommonConnectOpts { /** * The duplex stream to use for communication. * This stream handles both reading from and writing to the DBus connection. */ stream: Duplex; } //# sourceMappingURL=StreamConnectOpts.d.ts.map