UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

13 lines (10 loc) 411 B
import { CloudQuotaNetworkQuota } from './CloudQuotaNetworkQuota.js'; import { CloudQuotaComputeQuota } from './CloudQuotaComputeQuota.js'; import { CloudQuotaVolumeQuota } from './CloudQuotaVolumeQuota.js'; type CloudQuotaAllowedQuota = { compute?: CloudQuotaComputeQuota; name?: string; network?: CloudQuotaNetworkQuota; volume?: CloudQuotaVolumeQuota; }; export { CloudQuotaAllowedQuota };