7-segment-timer.contracts
Version:
These are the contracts for the 7 Segment Timer.
15 lines (14 loc) • 568 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.routes = void 0;
var routes;
(function (routes) {
routes["Off"] = "/off";
routes["ShowCurrentTime"] = "/show-current-time";
routes["StartTimer"] = "/start-timer";
routes["CancelTimer"] = "/cancel-timer";
routes["ChangeColor"] = "/change-color";
routes["ChangeMultipleColors"] = "/change-multiple-colors";
routes["StartAnimation"] = "/start-animation";
routes["StopAnimation"] = "/stop-animation";
})(routes = exports.routes || (exports.routes = {}));