@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
16 lines (15 loc) • 536 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChartType = exports.UnitType = void 0;
var UnitType;
(function (UnitType) {
UnitType["NUMBER"] = "number";
UnitType["PERCENTAGE"] = "percentage";
})(UnitType || (exports.UnitType = UnitType = {}));
var ChartType;
(function (ChartType) {
ChartType["DONUT"] = "doughnut";
ChartType["BAR"] = "bar";
ChartType["BAR_TIMESERIES"] = "bar-timeseries";
ChartType["LINE"] = "line";
})(ChartType || (exports.ChartType = ChartType = {}));