import { ResourceOcrDriverId } from '../database/types'; import { RecognizeResult } from './utils/types'; export default class OcrDriverBase { public async recognize(_language: string, _filePath: string, _id: string): Promise { throw new Error('Not implemented'); } public async dispose(): Promise {} public get driverId() { return ResourceOcrDriverId.PrintedText; } }