durable-functions
Version:
Durable Functions library for Node.js Azure Functions
12 lines • 422 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.WhenAnyAction = void 0;
const ActionType_1 = require("./ActionType");
class WhenAnyAction {
constructor(tasks) {
this.actionType = ActionType_1.ActionType.WhenAny;
this.compoundActions = tasks.map((t) => t.actionObj);
}
}
exports.WhenAnyAction = WhenAnyAction;
//# sourceMappingURL=WhenAnyAction.js.map
;