import { IAddress, IAmount, ICard } from './commun' export interface IProduct { amount_including_taxes: IAmount sale_amount_including_taxes: IAmount cpa: number id: string variation: { id: string } vat: number } export interface ISession { user: any quantity: number } export interface IUser { address?: IAddress card?: ICard } export interface IPayment { token: string } export interface IAuthorize { transaction_id: string user_id?: string } export interface IOrder { id: string }