@ima/core
Version:
IMA.js framework for isomorphic javascript application
26 lines (25 loc) • 752 B
JavaScript
/**
* HTTP status code constants, representing the HTTP status codes recognized
* and processed by this proxy.
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "RouteNames", {
enumerable: true,
get: function() {
return RouteNames;
}
});
var RouteNames = /*#__PURE__*/ function(RouteNames) {
/**
* The internal route name used for the "not found" error page (the 4XX
* HTTP status code error page).
*/ RouteNames["NOT_FOUND"] = "notFound";
/**
* The internal route name used for the error page (the 5XX HTTP status
* code error page).
*/ RouteNames["ERROR"] = "error";
return RouteNames;
}({});
//# sourceMappingURL=RouteNames.js.map