UNPKG

b-b-calculations

Version:

A cart calculation engine for buffalo burger restaurants

18 lines 497 B
import { Item } from './Items'; import { IPromocodeConfig } from './Promocode'; export declare enum deliveryType { DELIVERY = "DELIVERY", PICKUP = "PICKUP", DINEIN = "DINEIN" } export interface CheckoutConfig { cartMenuItems?: Item[]; cartOffers?: Item[]; deliveryFeesEgp?: number; loyaltyBalance?: number; dineinExtraCharge?: number; coupon?: IPromocodeConfig; deliveryType: deliveryType; appType: number; } //# sourceMappingURL=CheckoutConfig.d.ts.map