From 11a402626cdda92f41e708ed264982b51645cfee Mon Sep 17 00:00:00 2001 From: Mick Vleeshouwer Date: Sat, 17 Mar 2018 20:44:56 +0100 Subject: [PATCH] Update documentation --- src/@ionic-native/plugins/openalpr/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/@ionic-native/plugins/openalpr/index.ts b/src/@ionic-native/plugins/openalpr/index.ts index 7d0f5c306..e05ca0fc8 100644 --- a/src/@ionic-native/plugins/openalpr/index.ts +++ b/src/@ionic-native/plugins/openalpr/index.ts @@ -33,6 +33,8 @@ export interface OpenALPRResult { * amount: 3 * } * + * // To get imageData, you can use the @ionic-native/camera module for example. It works with DestinationType.FILE_URI and DATA_URL + * * this.openALPR.scan(imageData, scanOptions) * .then((res: [OpenALPRResult]) => console.log(res)) * .catch((error: Error) => console.error(error));