UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 309 B
import { DiskTypeEnum } from './DiskTypeEnum'; /** Disk properties (size and type of disk) */ export interface DiskType { /** Type of the disk */ type: DiskTypeEnum; /** Unit for disk size */ unit: string; /** Size of the disk */ value: number; } //# sourceMappingURL=DiskType.d.ts.map