import { JsonValue } from '@backstage/types'; /** * @public */ export interface RootHealthService { /** * Get the liveness status of the backend. */ getLiveness(): Promise<{ status: number; payload?: JsonValue; }>; /** * Get the readiness status of the backend. */ getReadiness(): Promise<{ status: number; payload?: JsonValue; }>; }