import { BasketItemVM } from './basketItemVM'; import { CurrencyVM } from './currencyVM'; import { PaymentTypeVM } from './paymentTypeVM'; export interface BasketVM { basket_id?: string; updated_date?: Date; basketItems?: Array; total_amount?: number; currency?: CurrencyVM; paymentType?: PaymentTypeVM; message?: string; can_update?: boolean; can_delete?: boolean; }