pivotal-flow
Version:
🔀 A command-line tool that helps you manage & automate your workflow to use with PivotalTracker.
15 lines (14 loc) • 443 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var StoryType;
(function (StoryType) {
StoryType["Feature"] = "feature";
StoryType["Bug"] = "bug";
StoryType["Chore"] = "chore";
StoryType["Release"] = "release";
})(StoryType = exports.StoryType || (exports.StoryType = {}));
exports.PointScales = {
linear: [0, 1, 2, 3],
fibonacci: [0, 1, 2, 3, 5, 8],
powers_of_two: [0, 1, 2, 4, 8],
};