UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

13 lines (10 loc) 376 B
import { ServiceRenewInterval } from './ServiceRenewInterval.js'; import { ServiceRenewMode } from './ServiceRenewMode.js'; type ServiceRenew = { dayOfMonth?: number | null; interval?: ServiceRenewInterval | null; mode?: ServiceRenewMode; possibleIntervals?: ServiceRenewInterval[] | null; possibleModes?: ServiceRenewMode[]; }; export { ServiceRenew };