dbus-sdk
Version:
A Node.js SDK for interacting with DBus, enabling seamless service calling and exposure with TypeScript support
15 lines (14 loc) • 491 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DBusUnixFD = void 0;
const DBusTypeClass_1 = require("../DBusTypeClass");
/**
* @deprecated The native node.js socket supports creating unix domain sockets, but they do not support passing file descriptors.
*/
class DBusUnixFD extends DBusTypeClass_1.DBusTypeClass {
static { this.type = 'h'; }
constructor(value) {
super(DBusUnixFD.type, value);
}
}
exports.DBusUnixFD = DBusUnixFD;