| 36 | }; |
| 37 | |
| 38 | interface AppState { |
| 39 | imageFile: File | null; |
| 40 | previewBitmap: ImageBitmap | null; |
| 41 | lastResult: OcrResult | null; |
| 42 | ocr: OcrEngine | null; |
| 43 | ocrReady: boolean; |
| 44 | vizObjectUrl: string | null; |
| 45 | } |
| 46 | |
| 47 | const state: AppState = { |
| 48 | imageFile: null, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…