Files
recipe-app/backend/dist/receipt-import/dto/parsed-receipt-item.dto.d.ts
T
Nils-Johan Gynther 969dafdbc6
Test Suite / test (24.15.0) (push) Has been cancelled
Refactor code structure for improved readability and maintainability
2026-05-06 07:37:59 +02:00

15 lines
422 B
TypeScript

import type { CategorySuggestion } from '../../ai/ai.service';
export interface ParsedReceiptItem {
rawName: string;
quantity: number;
unit: string;
price?: number | null;
brand?: string | null;
origin?: string | null;
matchedProductId?: number;
matchedProductName?: string;
suggestedProductId?: number;
suggestedProductName?: string;
categorySuggestion?: CategorySuggestion;
}