@tanislav000/bluez
Version:
Bluez5 D-Bus bindings for easy to use bluetooth access in Node.js
16 lines (15 loc) • 589 B
TypeScript
import * as DBus from "dbus-next";
/**
* Service: org.bluez
* ObjectPath: /-/bluez/hci0/-
* Interface: org.freedesktop.DBus.Introspectable
*/
export declare class OrgFreedesktopDBusIntrospectable {
static readonly DbusInterfaceName = "org.freedesktop.DBus.Introspectable";
dbusObject: DBus.ProxyObject;
thisDBusInterface: DBus.ClientInterface;
static Connect(bus: DBus.MessageBus, objectPath: string, xml?: string): Promise<OrgFreedesktopDBusIntrospectable>;
constructor(dbusObject: DBus.ProxyObject);
/***** Methods *****/
Introspect(): Promise<string>;
}