@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
10 lines • 368 B
TypeScript
import { ServicePackEnum } from './ServicePackEnum';
import { ServicePackStateEnum } from './ServicePackStateEnum';
/** Service pack informations */
export interface ServicePackStatus {
/** Name of the service pack */
name: ServicePackEnum;
/** State of the service pack */
state: ServicePackStateEnum;
}
//# sourceMappingURL=ServicePackStatus.d.ts.map