L'argument de type '{}' n'est pas attribuable au paramètre de type 'any[]'. La propriété 'length' est manquante dans le type '{}'

Hello every body
I have some problem in ionic 3 with this program

this.platform.ready().then(() => {
let options = { name : “my_db” };
this.storage = new Storage(SqlStorage, options);
this.storage.query(“CREATE TABLE IF NOT EXISTS categories (id INTEGER PRIMARY KEY AUTOINCREMENT, name VARCHAR(50))”, {}).then((data) => {
console.log("New table : " + JSON.stringify(data));
}, (error) => {
console.log(error);
});
});

The message of the problem is this : " L’argument de type ‘{}’ n’est pas attribuable au paramètre de type ‘any[]’.
La propriété ‘length’ est manquante dans le type ‘{}’. " and there are red underline on “{}”

Can you help me please