UNPKG

dbus-sdk

Version:

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

17 lines 761 B
import { LocalObject } from '../../LocalObject'; /** * A class representing the root object in a DBus object hierarchy. * Extends LocalObject to define a root object at the path '/' and automatically * adds an ObjectManagerInterface for managing sub-objects and interfaces. * This is typically used as the top-level object in a local DBus service. */ export declare class RootObject extends LocalObject { /** * Constructor for the RootObject class. * Initializes the root object with the path '/' and adds an instance of * ObjectManagerInterface to support hierarchical object management as per * the 'org.freedesktop.DBus.ObjectManager' interface specification. */ constructor(); } //# sourceMappingURL=RootObject.d.ts.map