import { AbbyyRTR } from '@awesome-cordova-plugins/abbyy-rtr/ngx';
constructor(private abbyyRTR: AbbyyRTR) { }
...
this.abbyyRTR.startTextCapture(options)
  .then((res: any) => console.log(res))
  .catch((error: any) => console.error(error));
this.abbyyRTR.startDataCapture(options)
  .then((res: any) => console.log(res))
  .catch((error: any) => console.error(error));