dbus-sdk
Version:
A Node.js SDK for interacting with DBus, enabling seamless service calling and exposure with TypeScript support
12 lines • 775 B
TypeScript
/**
* Sets up a local DBus service for testing or demonstration purposes.
* Creates a service with multiple objects and interfaces, defines methods, properties, and signals,
* and starts the service on the specified bus address. This function simulates a local DBus service
* with dynamic behavior such as signal emission and interface toggling.
*
* @param serviceName - The name of the local service to be created and registered on the DBus.
* @param busAddress - The DBus bus address to connect to for running the local service.
* @returns A Promise that resolves when the local service setup is complete.
*/
export declare function SetupLocalServiceSpec(serviceName: string, busAddress: string): Promise<void>;
//# sourceMappingURL=SetupLocalService.spec.d.ts.map