Skip to content

Commit

Permalink
Assign any type to Result from SQLResultSetRowList as defined in expo…
Browse files Browse the repository at this point in the history
…-sqlite docs
  • Loading branch information
chintannp committed Mar 3, 2022
1 parent 9f3b666 commit 07f16c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class ExpoSQLiteDatabase implements CommonSQLiteDatabase {
return new Promise((resolveTx, rejectTx) => {
this.db.transaction(async tx => {
try {
const results: T[] = await Promise.all(
const results: any[] = await Promise.all(
[...queryStatements].map(
([statement, params]) =>
new Promise((resolve, reject) => {
Expand Down

0 comments on commit 07f16c0

Please sign in to comment.