UNPKG

@fluidware-it/healthz-server

Version:

Simple http server to expose an healthz endpoint

12 lines 285 B
export interface HealthzServerOptions { path?: string; port?: number; address?: string; } export type checkFunction = () => void | Promise<void>; export interface AddressInfo { port: number; address: string; family: string; } //# sourceMappingURL=types.d.ts.map