You've already forked joplin
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:
11
packages/lib/services/ocr/OcrDriverBase.ts
Normal file
11
packages/lib/services/ocr/OcrDriverBase.ts
Normal 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> {}
|
||||
|
||||
}
|
Reference in New Issue
Block a user