add envolvedDiscounts to CartData type

This commit is contained in:
nflnkr 2023-07-14 19:13:49 +03:00
parent fb9f17798c
commit 460a9f28d1

@ -1,3 +1,6 @@
import { Discount } from "./discount";
export type PrivilegeCartData = {
tariffId: string;
serviceKey: string;
@ -17,4 +20,5 @@ export type CartData = {
priceBeforeDiscounts: number;
priceAfterDiscounts: number;
itemCount: number;
envolvedDiscounts: Discount[];
};