UNPKG

react-native-executorch

Version:

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

13 lines (10 loc) 175 B
export interface OCRDetection { bbox: OCRBbox[]; text: string; score: number; } export interface OCRBbox { x: number; y: number; } export type OCRLanguage = 'en';