import { ApplicationLifeCycleStatusTypes } from "./enum-application-life-cycle-status"; /** * Probe result */ export interface IProbeResult { /** * K8S health status of the current probe */ status: T; /** * Additional data to be reported out with the call */ data: Record; }