UNPKG

easyocr-js

Version:

A Node.js wrapper for EasyOCR

8 lines 240 B
declare module "easyocr-js" { export default class EasyOCRWrapper { constructor(); init(language: string): Promise<string>; readText(imagePath: string): Promise<string>; close(): Promise<string>; } }