cecon-interfaces
Version:
Interfaces de Projetos Cecon
15 lines (14 loc) • 431 B
TypeScript
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;
}