UNPKG

@amirmarmul/waba-common

Version:

![GitHub release](https://img.shields.io/github/v/release/amirmarmul/waba-common?style=flat-square)

7 lines (6 loc) 249 B
import { HealthIndicatorResult } from '../healthIndicator/HealthIndicatorResult'; export type HealthCheckStatus = 'error' | 'ok' | 'shutdown'; export interface HealthCheckResult { status: HealthCheckStatus; details: HealthIndicatorResult; }