When attempting to import a JavaScript file into my Ionic2 project for data encryption, I encountered the following error:
TypeScript error: /app/service/Util.service.ts(49,23): Error TS2663: Cannot find name 'RSAKey'. Did you mean the instance member 'this.RSAKey'?
TypeScript error: /app/service/Util.service.ts(52,16): Error TS2304: Cannot find name 'hex2b64'.
I have tried copying the library into a folder and referencing it in index.html as I would with Angular v1, but that did not work. According to the ionic2 documentation, I need to install it via npm, but I am unsure how to do this. Any suggestions on how to proceed? Thanks!