fix error on all interfaces

This commit is contained in:
2025-11-15 14:00:24 +01:00
parent 3b7f55f84c
commit 0a7ffe70a0
8 changed files with 12 additions and 11 deletions

View File

@@ -1,5 +1,7 @@
import {ProductInfo} from "./product.interface";
export interface ProductOrderInfo {
product: string;
product: ProductInfo;
quantity: number;
price: number;
}