UNPKG

react-native-executorch

Version:

An easy way to run AI models in react native with ExecuTorch

12 lines 284 B
import { symbols } from '../constants/ocr/symbols'; export interface OCRDetection { bbox: OCRBbox[]; text: string; score: number; } export interface OCRBbox { x: number; y: number; } export type OCRLanguage = keyof typeof symbols; //# sourceMappingURL=ocr.d.ts.map