UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

15 lines (12 loc) 571 B
import { OrderPrice } from './OrderPrice.js'; import { CloudProjectNewProjectInfoError } from './CloudProjectNewProjectInfoError.js'; import { CloudProjectNewProjectInfoVoucher } from './CloudProjectNewProjectInfoVoucher.js'; import './OrderCurrencyCodeEnum.js'; import './CloudProjectNewProjectInfoErrorCodeEnum.js'; type CloudProjectNewProjectInfo = { agreements?: number[] | null; error?: CloudProjectNewProjectInfoError | null; order?: OrderPrice | null; voucher?: CloudProjectNewProjectInfoVoucher | null; }; export { CloudProjectNewProjectInfo };