dbus-sdk
Version:
A Node.js SDK for interacting with DBus, enabling seamless service calling and exposure with TypeScript support
17 lines • 719 B
TypeScript
import { LocalInterface } from '../../LocalInterface';
/**
* A class representing the DBus Peer interface.
* This interface provides basic peer-to-peer functionality for DBus connections,
* including retrieving the machine ID and a simple ping method for testing connectivity.
* Implements the 'org.freedesktop.DBus.Peer' interface.
*/
export declare class PeerInterface extends LocalInterface {
/**
* Constructor for the PeerInterface.
* Initializes the interface with the name 'org.freedesktop.DBus.Peer'
* and defines two methods: 'GetMachineId' to retrieve the machine UUID,
* and 'Ping' for connectivity testing.
*/
constructor();
}
//# sourceMappingURL=PeerInterface.d.ts.map