mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
12 lines
265 B
TypeScript
12 lines
265 B
TypeScript
|
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> {}
|
||
|
|
||
|
}
|