UNPKG

dbus-sdk

Version:

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

17 lines 739 B
/** * Defines common connection options shared across different DBus connection methods. * This interface provides configuration settings that can be applied to various connection types. */ export interface CommonConnectOpts { /** * Optional flag to enable advanced response handling for DBus messages. * When set to true, DBus return messages are organized using DBusTypeClass instances for structured data representation. * Defaults to false, which returns plain JavaScript values. */ advancedResponse?: boolean; /** * Optional flag to enable auto convert bigint to javascript number for DBus messages. */ convertBigIntToNumber?: boolean; } //# sourceMappingURL=CommonConnectOpts.d.ts.map