import { SmsRetriever } from '@awesome-cordova-plugins/sms-retriever';
constructor(private smsRetriever: SmsRetriever) { }
...
this.smsRetriever.getAppHash()
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));
this.smsRetriever.startWatching()
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));