UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

10 lines 315 B
import { Order } from '../Order'; import { Operation } from './Operation'; /** Describes an Operation and the associated Order */ export interface OperationAndOrder { /** Upgrade operation */ operation?: Operation; /** Order placed */ order?: Order; } //# sourceMappingURL=OperationAndOrder.d.ts.map