UNPKG

node-ovh-ts

Version:

OVH API wrapper library for TypeScript

12 lines (9 loc) 457 B
import { ServicesExpandedLifecycleStateEnum } from './ServicesExpandedLifecycleStateEnum.js'; import { ServicesExpandedLifecycleActionEnum } from './ServicesExpandedLifecycleActionEnum.js'; type ServicesExpandedLifecycleCurrent = { creationDate?: Date | null; pendingActions?: ServicesExpandedLifecycleActionEnum[]; state?: ServicesExpandedLifecycleStateEnum; terminationDate?: Date | null; }; export { ServicesExpandedLifecycleCurrent };