UNPKG

react-native-vision-camera-detector

Version:

Frame Processor Plugin to detect faces & texts using MLKit Vision Face Detector for React Native Vision Camera!

8 lines (6 loc) 263 B
import { NativeModules } from 'react-native'; import type { Languages } from './types'; export async function RemoveLanguageModel(code: Languages): Promise<boolean> { const { RemoveLanguageModel: Remove } = NativeModules; return await Remove.remove(code); }