Interface RawItem

interface RawItem {
    color: string;
    description: string;
    image: string;
    price?: number;
}

Properties

color: string
description: string
image: string
price?: number