all files / base/ enum.js

100% Statements 12/12
100% Branches 2/2
100% Functions 2/2
100% Lines 12/12
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16        
define(["require", "exports"], function (require, exports) {
    "use strict";
    Object.defineProperty(exports, "__esModule", { value: true });
    var ConstraintType;
    (function (ConstraintType) {
        ConstraintType[ConstraintType["AsSoonAsPossible"] = 0] = "AsSoonAsPossible";
        ConstraintType[ConstraintType["AsLateAsPossible"] = 1] = "AsLateAsPossible";
        ConstraintType[ConstraintType["MustStartOn"] = 2] = "MustStartOn";
        ConstraintType[ConstraintType["MustFinishOn"] = 3] = "MustFinishOn";
        ConstraintType[ConstraintType["StartNoEarlierThan"] = 4] = "StartNoEarlierThan";
        ConstraintType[ConstraintType["StartNoLaterThan"] = 5] = "StartNoLaterThan";
        ConstraintType[ConstraintType["FinishNoEarlierThan"] = 6] = "FinishNoEarlierThan";
        ConstraintType[ConstraintType["FinishNoLaterThan"] = 7] = "FinishNoLaterThan";
    })(ConstraintType = exports.ConstraintType || (exports.ConstraintType = {}));
});