UNPKG

@neoskop/nestjs-probes

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