dbus-sdk
Version:
A Node.js SDK for interacting with DBus, enabling seamless service calling and exposure with TypeScript support
12 lines (11 loc) • 358 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DBusVariant = void 0;
const DBusTypeClass_1 = require("../DBusTypeClass");
class DBusVariant extends DBusTypeClass_1.DBusTypeClass {
static { this.type = 'v'; }
constructor(value) {
super(DBusVariant.type, value);
}
}
exports.DBusVariant = DBusVariant;