@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
11 lines • 311 B
TypeScript
import { Quantity } from './Quantity';
/** Component */
export interface Component {
/** Name of the component */
name: string;
/** Total quantity for the component */
quantity: Quantity;
/** Total price for this component */
totalPrice: number;
}
//# sourceMappingURL=Component.d.ts.map