UNPKG

cecon-interfaces

Version:
15 lines (14 loc) 431 B
import { IMottuAddress } from './i-address'; import { IMottuOrderStore } from './i-order-store'; export interface IMottuOrderPreview { deliveries: IMottuAddress[]; deliveryFee: number; expectedDelivery: Date; expectedPickup: Date; onlinePayment: boolean; pickupAddress: IMottuAddress; previewDeliveryTime: boolean; sortByBestRoute: boolean; store: IMottuOrderStore; totalDistance: number; }