update 16/01

This commit is contained in:
2026-01-16 17:04:10 +07:00
parent b921d73f73
commit ddb60bd5f9
9 changed files with 269 additions and 89 deletions

View File

@@ -1,12 +1,13 @@
// src/types/deal.ts
export type ProductItemProps = {
price: number;
quantity: number;
productUrl: string;
productImage: string;
productName: string;
marketPrice : number;
specialOffer : string;
warranty: string;
productSummary: string;
productId : number;
price : number;
marketPrice : number;
quantity : number;
productUrl : string;
productName : string;
warranty : string;
productSummary : string;
productImage : any;
specialOffer : any;
};