Skip to content

Commit

Permalink
Update src/contract/table-cursor.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Fugere <[email protected]>
  • Loading branch information
aaroncox and dafuga authored Jul 24, 2023
1 parent 9c56fdb commit 785a49f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/contract/table-cursor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export class TableCursor<RowType = any> {
}

async all(): Promise<RowType[]> {
const rows: any[] = []
const rows: RowType[] = []
for await (const row of this) {
rows.push(row)
}
Expand Down

0 comments on commit 785a49f

Please sign in to comment.