Hello there, I am currently exploring this SQLite example and encountering the following errors https://github.com/TeamClouders/Ionic-2-sqlite-demo,
Member 'db' is implicitly assigned an 'any' type.
Member 'arr' is implicitly assigned an 'any[]' type.
Parameter 'tx' is implicitly assigned an 'any' type.
...
In https://github.com/TeamClouders/Ionic-2-sqlite-demo/blob/master/src/providers/sqlite.ts
I am unsure of what might be causing these issues?
Thank you
UPDATE thanks @yugantar kumar I have managed to set the 'members' type without any errors:
public text : string = "";
public db:any = null;
public arr : any = [];
However, I am still encountering errors on the Params - struggling with setting the types for the parameters? e.g
.transaction((tx) => {
tx.executeSql('CREATE TABLE IF NOT EXISTS Todo (id integer primary
key,todoItem text)');