my-test123
Version:
A planner front-end for Fabric8.
27 lines • 912 B
JavaScript
export var GET_WORKITEM = '[workItem] GetWorkItem'; // Get a workitem by number
export var GET_WORKITEM_SUCCESS = '[workItem] GetWorkItemSuccess';
export var GET_WORKITEM_ERROR = '[workItem] GetWorkItemError';
var GetWorkItem = /** @class */ (function () {
function GetWorkItem(payload) {
this.type = GET_WORKITEM;
this.payload = payload;
}
return GetWorkItem;
}());
export { GetWorkItem };
var GetWorkItemSuccess = /** @class */ (function () {
function GetWorkItemSuccess(payload) {
this.type = GET_WORKITEM_SUCCESS;
this.payload = payload;
}
return GetWorkItemSuccess;
}());
export { GetWorkItemSuccess };
var GetWorkItemError = /** @class */ (function () {
function GetWorkItemError() {
this.type = GET_WORKITEM_ERROR;
}
return GetWorkItemError;
}());
export { GetWorkItemError };
//# sourceMappingURL=detail-work-item.actions.js.map