node-ovh-ts
Version:
OVH API wrapper library for TypeScript
15 lines (12 loc) • 770 B
TypeScript
import { OrderCatalogPccHostStorageSpecifications } from './OrderCatalogPccHostStorageSpecifications.js';
import { OrderCatalogPccHostMemorySpecifications } from './OrderCatalogPccHostMemorySpecifications.js';
import { OrderCatalogPccHostNetworkSpecifications } from './OrderCatalogPccHostNetworkSpecifications.js';
import { OrderCatalogPccHostCpuSpecifications } from './OrderCatalogPccHostCpuSpecifications.js';
import './OrderCatalogPccPccUnitAndValue.js';
type OrderCatalogPccHostSpecifications = {
cpu?: OrderCatalogPccHostCpuSpecifications;
memory?: OrderCatalogPccHostMemorySpecifications;
network?: OrderCatalogPccHostNetworkSpecifications[];
storage?: OrderCatalogPccHostStorageSpecifications;
};
export { OrderCatalogPccHostSpecifications };