added all interfaces necessary from project

This commit is contained in:
2025-11-14 11:19:16 +01:00
parent 96927161a0
commit e744a50923
10 changed files with 72 additions and 4 deletions

View File

@@ -0,0 +1,5 @@
export interface ProductOrderInfo {
product: string;
quantity: number;
price: number;
}