doe/fe/src/lib/schemas/ocr.ts
2025-04-02 23:54:43 +02:00

8 lines
241 B
TypeScript

export interface OcrExtractResponse {
extracted_items: string[]; // Matches the backend schema
}
export interface OcrReviewItem {
id: number; // Temporary unique ID for the {#each} key
text: string; // The item name, editable
}