Skip to content

Commit

Permalink
fix(knex): Update commited to boolean type (#3458)
Browse files Browse the repository at this point in the history
  • Loading branch information
AshotN committed Apr 10, 2024
1 parent a2c7807 commit 5fa4dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/knex/src/declarations.ts
Expand Up @@ -10,7 +10,7 @@ export interface KnexAdapterOptions extends AdapterServiceOptions {
export interface KnexAdapterTransaction {
starting: boolean
parent?: KnexAdapterTransaction
committed?: any
committed?: Promise<boolean>
resolve?: any
trx?: Knex.Transaction
id?: number
Expand Down

0 comments on commit 5fa4dbc

Please sign in to comment.