mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2026-04-13 00:00:10 +08:00
refactor: follow array-type lint rule
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user