Skip to content

Commit

Permalink
fix(sqlite): fix param type for sqlBatch method
Browse files Browse the repository at this point in the history
closes #1596
  • Loading branch information
ihadeed committed Jul 10, 2017
1 parent a6f9714 commit e8faf22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/@ionic-native/plugins/sqlite/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,11 @@ export class SQLiteObject {
executeSql(statement: string, params: any): Promise<any> { return; }

/**
* @param sqlStatements {Array<string | string[]>}
* @param sqlStatements {Array<string | string[] | any>}
* @returns {Promise<any>}
*/
@CordovaInstance()
sqlBatch(sqlStatements: Array<string | string[]>): Promise<any> { return; }
sqlBatch(sqlStatements: Array<string | string[] | any>): Promise<any> { return; }

@CordovaInstance({
sync: true
Expand Down

0 comments on commit e8faf22

Please sign in to comment.