From 76810ab5cfc9cdcb8888fcf7e74e17c7dee49552 Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Tue, 18 Mar 2025 20:36:28 +0330 Subject: [PATCH] updated cart item types --- frontend/types/global.d.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/frontend/types/global.d.ts b/frontend/types/global.d.ts index 637c56c..6362e85 100644 --- a/frontend/types/global.d.ts +++ b/frontend/types/global.d.ts @@ -71,7 +71,7 @@ declare global { discount: number; color: string; video: string | null; - cart_quantity : number; + cart_quantity: number; }; type Product = { @@ -215,6 +215,10 @@ declare global { discount_amount: string; final_price: string; }; + discount: number; + discount_amount: string; + price: string; + final_price: string; quantity: number; };