cordova-plugin-tf-lite
Version:
Cordova plugin that allows image classification from HTML code.
12 lines (8 loc) • 315 B
TypeScript
type TfLiteErrorHandler = (err: any) => any;
type TfLiteSuccessHandler = (data: any) => any;
interface TfLiteOptions {
base64Img?: string;
}
interface TfLite {
takePicture(options?:TfLiteOptions|TfLiteSuccessHandler, onSuccess?:TfLiteSuccessHandler|TfLiteErrorHandler, onError?:TfLiteErrorHandler):void;
}