feat: add receipt import functionality with UI and backend integration
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
export interface ParsedReceiptItem {
|
||||
rawName: string;
|
||||
quantity: number;
|
||||
unit: string;
|
||||
price?: number | null;
|
||||
matchedProductId?: number;
|
||||
matchedProductName?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user