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