import { DiscountType } from "./discount.types"; export interface DiscountDTO { type: DiscountType; description: string; amount?: number; percent?: number; calculatedAmount: number; }