UNPKG

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
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DBusInt32 = void 0; const DBusTypeClass_1 = require("../DBusTypeClass"); class DBusInt32 extends DBusTypeClass_1.DBusTypeClass { static { this.type = 'i'; } constructor(value) { super(DBusInt32.type, value); } } exports.DBusInt32 = DBusInt32;