/** * Interface for the sentinel. */ export default interface ISentinel { /** * Is the sentinel healthy. * @returns {boolean} Is the sentinel healthy. */ get isHealthy(): boolean; }