UNPKG

b-b-calculations

Version:

A cart calculation engine for buffalo burger restaurants

8 lines 193 B
import { IItem } from "./CartItem"; export interface Item extends IItem { } export interface PricedCartItem { netPrice: number; totalPrice: number; } //# sourceMappingURL=Items.d.ts.map