@helium/http
Version:
HTTP library for interacting with the Helium blockchain API
19 lines • 583 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
/* eslint-disable no-param-reassign */
/* eslint-disable max-classes-per-file */
const DataModel_1 = __importDefault(require("./DataModel"));
class Role extends DataModel_1.default {
constructor(data) {
super();
Object.assign(this, data);
}
get data() {
return this;
}
}
exports.default = Role;
//# sourceMappingURL=Role.js.map