10 lines
183 B
TypeScript
10 lines
183 B
TypeScript
export interface CatalogItemRowProps {
|
|
imageUrl: string;
|
|
title: string;
|
|
description: string;
|
|
price: number;
|
|
quantity: number;
|
|
onAdd: () => void;
|
|
onRemove: () => void;
|
|
}
|