You've already forked joplin
							
							
				mirror of
				https://github.com/laurent22/joplin.git
				synced 2025-10-31 00:07:48 +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> {}
 | |
| 
 | |
| }
 |