@flowlab/all
Version:
A cool library focusing on handling various flows
20 lines (19 loc) • 537 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseNode = void 0;
var BaseNode = /** @class */ (function () {
function BaseNode() {
}
Object.defineProperty(BaseNode.prototype, "requiredRoles", {
/**
* Optional: Specify required roles for execution. Checked by the engine.
*/
get: function () {
return undefined;
},
enumerable: false,
configurable: true
});
return BaseNode;
}());
exports.BaseNode = BaseNode;