import { ICoords } from './i-coords';
export interface IDeliveryArea {
    deliveryFee: number;
    id: string;
    latlngs: ICoords[];
    maxTime: number;
    minTime: number;
    minimumOrderValue: number;
    name: string;
    sequence: number;
}
