mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-05-02 00:07:23 +08:00
Typescript error solved (#947)
Added a placeholder parameter to resolve typescript error
This commit is contained in:
@@ -21,7 +21,7 @@ declare var sqlitePlugin;
|
|||||||
* })
|
* })
|
||||||
* .then((db: SQLite) => {
|
* .then((db: SQLite) => {
|
||||||
*
|
*
|
||||||
* db.executeSql('create table danceMoves(name VARCHAR(32))').then(() => {}).catch(() => {});
|
* db.executeSql('create table danceMoves(name VARCHAR(32))', {}).then(() => {}).catch(() => {});
|
||||||
*
|
*
|
||||||
* })
|
* })
|
||||||
* .catch(error => console.error('Error opening database', error);
|
* .catch(error => console.error('Error opening database', error);
|
||||||
|
|||||||
Reference in New Issue
Block a user