import { BioCatch } from '@awesome-cordova-plugins/biocatch';
constructor(private biocatch: BioCatch) { }
...
this.biocatch.start('customer-session-1', 'http://example.com', 'some-public-key')
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));