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