fix(sqlite): fix method attribute typo (#324)

This commit is contained in:
Marcin Wadoń 2016-07-18 12:34:31 +02:00 committed by Ibrahim Hadeed
parent 57725828a6
commit 006bc70387

View File

@ -123,7 +123,7 @@ export class SQLite {
executeSql(statement: string, params: any): Promise<any> { return; }
@CordovaInstance()
addSatement(sql, values): Promise<any> { return; }
addStatement(sql, values): Promise<any> { return; }
@CordovaInstance()
sqlBatch(sqlStatements: any): Promise<any> { return; }