UNPKG

@rs-box/ez-flow

Version:
13 lines (12 loc) 288 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AbstractWorkFlow = void 0; class AbstractWorkFlow { constructor(name) { this.name = name; } getName() { return this.name; } } exports.AbstractWorkFlow = AbstractWorkFlow;