bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
17 lines • 614 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AyudaContextual = void 0;
var AyudaContextual = /** @class */ (function () {
function AyudaContextual(key, header, title, body) {
this.key = key;
this.header = header;
this.title = title;
this.body = body;
}
AyudaContextual.newObject = function (obj) {
return new AyudaContextual(obj.key, obj.header || obj.title, obj.title || obj.header, obj.body);
};
return AyudaContextual;
}());
exports.AyudaContextual = AyudaContextual;
//# sourceMappingURL=ayudacontextual.js.map