From bf88f6ee51dd91917edb30c7042330a2ec1dae98 Mon Sep 17 00:00:00 2001 From: Mick Vleeshouwer Date: Sat, 17 Mar 2018 21:45:24 +0100 Subject: [PATCH] Update countries --- src/@ionic-native/plugins/openalpr/index.ts | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/@ionic-native/plugins/openalpr/index.ts b/src/@ionic-native/plugins/openalpr/index.ts index e05ca0fc..4872fa42 100644 --- a/src/@ionic-native/plugins/openalpr/index.ts +++ b/src/@ionic-native/plugins/openalpr/index.ts @@ -53,19 +53,22 @@ export interface OpenALPRResult { export class OpenALPR extends IonicNativePlugin { Country = { - EU: 'eu', - US: 'us', AU: 'au', BR: 'br', - KR2: 'kr2' + BR2: 'br2', + EU: 'eu', + IN: 'in', + KR2: 'kr2', + US: 'us', + VN2: 'vn2' }; - /** - * This function does something - * @param imageData {any} Base64 encoding of the image data or the image file URI - * @param options {OpenALPROptions} Options to pass to the OpenALPR scanner - * @return {Promise} Returns a promise that resolves when something happens - */ + /** + * This function does something + * @param imageData {any} Base64 encoding of the image data or the image file URI + * @param options {OpenALPROptions} Options to pass to the OpenALPR scanner + * @return {Promise} Returns a promise that resolves when something happens + */ @Cordova() scan(imageData: any, options?: OpenALPROptions): Promise { return; } }