2026-07-01 09:55:55 +05:30

10 lines
183 B
TypeScript

export interface CatalogItemRowProps {
imageUrl: string;
title: string;
description: string;
price: number;
quantity: number;
onAdd: () => void;
onRemove: () => void;
}