@tanislav000/bluez
Version:
Bluez5 D-Bus bindings for easy to use bluetooth access in Node.js
19 lines (18 loc) • 698 B
TypeScript
import * as DBus from "dbus-next";
/**
* Service: org.bluez
* ObjectPath: /org/bluez
* Interface: org.bluez.ProfileManager1
*/
export declare class OrgBluezProfileManager1 {
static readonly DbusInterfaceName = "org.bluez.ProfileManager1";
dbusObject: DBus.ProxyObject;
thisDBusInterface: DBus.ClientInterface;
static Connect(bus: DBus.MessageBus, objectPath?: string, xml?: string): Promise<OrgBluezProfileManager1>;
constructor(dbusObject: DBus.ProxyObject);
/***** Methods *****/
RegisterProfile(profile: DBus.ObjectPath, UUID: string, options: {
[key: string]: any;
}): Promise<void>;
UnregisterProfile(profile: DBus.ObjectPath): Promise<void>;
}