@waku/interfaces
Version:
Definition of Waku interfaces
16 lines • 519 B
JavaScript
export var HealthStatus;
(function (HealthStatus) {
/**
* No peer connections
*/
HealthStatus["Unhealthy"] = "Unhealthy";
/**
* At least 1 peer supporting both Filter and LightPush protocols
*/
HealthStatus["MinimallyHealthy"] = "MinimallyHealthy";
/**
* At least 2 peers supporting both Filter and LightPush protocols
*/
HealthStatus["SufficientlyHealthy"] = "SufficientlyHealthy";
})(HealthStatus || (HealthStatus = {}));
//# sourceMappingURL=health_status.js.map