@ima/core
Version:
IMA.js framework for isomorphic javascript application
16 lines (15 loc) • 550 B
JavaScript
/**
* HTTP status code constants, representing the HTTP status codes recognized
* and processed by this proxy.
*/ export 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