Type Alias PurchaseItem

PurchaseItem: {
    productId: string;
    qty: number;
    name: string;
    image: string;
    description: string;
}