1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-13 00:10:37 +02:00

Desktop: Add support for OCR (#8975)

This commit is contained in:
Laurent Cozic
2023-12-13 19:24:58 +00:00
committed by GitHub
parent 0e847685ff
commit bce94f1775
79 changed files with 2381 additions and 445 deletions

View File

@ -0,0 +1,11 @@
import { RecognizeResult } from './utils/types';
export default class OcrDriverBase {
public async recognize(_language: string, _filePath: string): Promise<RecognizeResult> {
throw new Error('Not implemented');
}
public async dispose(): Promise<void> {}
}