Type alias JimpexHealthStatus

JimpexHealthStatus: boolean | {
    isHealthy?: boolean;
    services?: Record<string, boolean>;
}

The format in which the application's health status can be returned. It's either a simple boolean, or a more detailed object.

Type declaration

  • Optional isHealthy?: boolean
  • Optional services?: Record<string, boolean>

Generated using TypeDoc