UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

14 lines (11 loc) 506 B
import { CloudBillingViewInstanceSnapshot } from './CloudBillingViewInstanceSnapshot.js'; import { CloudBillingViewVolumeSnapshot } from './CloudBillingViewVolumeSnapshot.js'; import './CloudBillingViewQuantity.js'; import './CloudBillingViewUnitQuantityEnum.js'; type CloudBillingViewHourlySnapshot = { instance?: CloudBillingViewInstanceSnapshot | null; region?: string; totalPrice?: number; volume?: CloudBillingViewVolumeSnapshot | null; }; export { CloudBillingViewHourlySnapshot };