@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 415 B
TypeScript
/** The statuses of a Load Balancer component */
export interface ComponentStatus {
/** The number of component with status error */
error: number;
/** The number of component with status ok */
ok: number;
/** The number of component with status unknown */
unknown: number;
/** The number of component with status warn */
warn: number;
}
//# sourceMappingURL=ComponentStatus.d.ts.map