refactor: follow array-type lint rule

This commit is contained in:
Daniel
2018-09-17 16:05:37 +02:00
parent 60a7190eda
commit c9d41ebd8a
31 changed files with 115 additions and 114 deletions
+2 -2
View File
@@ -125,11 +125,11 @@ export class SQLiteObject {
}
/**
* @param sqlStatements {Array<string | string[] | any>}
* @param sqlStatements {string[] | string[][] | any[]}
* @returns {Promise<any>}
*/
@CordovaInstance()
sqlBatch(sqlStatements: Array<string | string[] | any>): Promise<any> {
sqlBatch(sqlStatements: string[] | string[][] | any[]): Promise<any> {
return;
}