import {ProductInfo} from "./product.interface"; export interface ProductOrderInfo { product: ProductInfo; quantity: number; price: number; }