Skip to content

Commit

Permalink
fix(sqlite): fix param type for sqlBatch method
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadeed authored and Buddy Reno committed Aug 28, 2017
1 parent c9f1aef commit 145cb38
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 145cb38

Please sign in to comment.