@loopback/health
Version:
An extension exposes health check related endpoints with LoopBack 4
10 lines (9 loc) • 303 B
TypeScript
import { Application, Component } from '@loopback/core';
import { HealthConfig } from './types';
/**
* A component providing health status
*/
export declare class HealthComponent implements Component {
private application;
constructor(application: Application, healthConfig?: HealthConfig);
}