@openzeppelin/relayer-sdk
Version:
OpenZeppelin Relayer SDK
28 lines (27 loc) • 768 B
JavaScript
;
/* tslint:disable */
/* eslint-disable */
/**
* OpenZeppelin Relayer API
* OpenZeppelin Relayer API
*
* The version of the OpenAPI document: 1.3.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ComponentStatus = void 0;
/**
* Component health status levels.
* @export
* @enum {string}
*/
var ComponentStatus;
(function (ComponentStatus) {
ComponentStatus["HEALTHY"] = "healthy";
ComponentStatus["DEGRADED"] = "degraded";
ComponentStatus["UNHEALTHY"] = "unhealthy";
})(ComponentStatus || (exports.ComponentStatus = ComponentStatus = {}));