UNPKG

@neoskop/nestjs-probes

Version:
8 lines (7 loc) 266 B
import { HealthIndicatorFunction } from '@nestjs/terminus'; import { ProbeCheck, ProbeType } from './types'; export interface ProbesModuleOptions { checks: { [key in ProbeType]?: ProbeCheck | HealthIndicatorFunction | HealthIndicatorFunction[]; }; }