I've installed all sqlite cli but ionic doesnt see SQLite just see SQLiteOriginal and SQLiteObject

Hi everyone, i’ve problem. I’ve read a lot of issues but anyone doesn’t say this problem.
I’ve imported all package in app.module and database provider. but again appdoesnt see sqlite.
I’m getting this error in my database provider:
Uncaught Error: Can’t resolve all parameters for DatabaseProvider: ([object Object], ?, [object Object]).

these are my package:
import { SQLite, SQLiteObject } from ‘@ionic-native/sqlite’;
import ‘rxjs/add/operator/map’;
import { Storage } from ‘@ionic/storage’;

My Constructor here:

constructor(private storage: Storage, private sqlite:SQLite (Doesnt see) , private http: Http) {
this.sqlite.create({
name:‘todo.db’,
location:‘default’
}).then(
(db:SQLiteObject)=>{
db.executeSql(‘CREATE TABLE IF NOT EXISTS todo (ID INTEGER PRIMARY KEY AUTOINCREMENT,title TEXT,desc TEXT)’,);
this.database=db;
alert(“DB Oluşturuldu”);
}
);
}

Please help me.
Thanks.

SOLVED

i think new update has caused this problem.
We should add;

import { SQLite, SQLiteObject } from ‘@ionic-native/sqlite/ngx