mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-02-04 00:06:19 +08:00
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
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<any>} Returns a promise that resolves when Code is captured
|
|
*/
|
|
@Cordova()
|
|
scan(options: AnylineOptions): Promise<any> {
|
|
return;
|
|
}
|
|
}
|