UNPKG

@actuatorjs/actuatorjs

Version:

Core interfaces and classes for actuatorjs ecosystem

6 lines (5 loc) 156 B
import type { HealthResult } from "./HealthResult"; export interface HealthIndicator { getName: () => string; check: () => Promise<HealthResult>; }