Ionic 5 sqlite with sqlcipher

I have created an app which is using the standard SQLite plugin from ionic.

I’d like to look at using the sqlchiper plugin which is said to be a direct replacement… However the executeSQL does not have a promise (.then) so its not working as expected and it means i have a lot of code to re-do.

SO i’m checking to see if the the folllowing is possible with using the SQLchiper plugin

 this._database.executeSql(sqlCommand, []).then(data => {
            //  console.log(data);
            return true; // Tables  is ready
          }));

thanks