interface ScannedItem { barcode_id: string; product_name: string; small_image_url?: string; price: number | null; rayon: string | null; moment: string | null; attribut: string | null; conservation: string | null; } export default ScannedItem;