import { Injectable } from '@angular/core'; import { Cordova, AwesomeCordovaNativePlugin, Plugin } from '@awesome-cordova-plugins/core'; export interface AnylineOptions { // Valid License Key licenseKey: string; // Scanning options config: any; } /** * @name Anyline * @description * Anyline provides an easy-to-use SDK for applications to enable Optical Character Recognition (OCR) on mobile devices. * @usage * ```typescript * import { Anyline } from '@awesome-cordova-plugins/anyline/ngx'; * * * constructor(private anyline: Anyline) { } * * ... * * * this.anyline.scan(options) * .then((res: any) => console.log(res)) * .catch((error: any) => console.error(error)); * * ``` */ @Plugin({ pluginName: 'Anyline', plugin: 'io-anyline-cordova', pluginRef: 'Anyline', repo: 'https://github.com/Anyline/anyline-ocr-cordova-module', platforms: ['Android', 'iOS'], }) @Injectable() export class Anyline extends AwesomeCordovaNativePlugin { /** * Scan * * @param options {AnylineOptions} Scanning options * @returns {Promise} Returns a promise that resolves when Code is captured */ @Cordova() scan(options: AnylineOptions): Promise { return; } }