summaryrefslogtreecommitdiff
path: root/src-migrate/types/checkout.ts
blob: dc1365d89097b73aa9641f4e5ec572b785308787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { CartItem } from './cart';

export interface ICheckout {
  total_purchase: number;
  total_discount: number;
  discount_voucher: number;
  subtotal: number;
  tax: number;
  grand_total: number;
  total_weight: {
    kg: number;
    g: number;
  };
  has_product_without_weight: boolean;
  products: CartItem[];
}