Skip to content

Commit

Permalink
Merge 262ee9f into e527fae
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoll committed Oct 13, 2018
2 parents e527fae + 262ee9f commit e7f69ad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions types/knex.d.ts
Expand Up @@ -457,8 +457,11 @@ declare namespace Knex {
//TODO: Promise?
columnInfo(column?: string): Bluebird<ColumnInfo>;

forUpdate(): QueryBuilder;
forShare(): QueryBuilder;
forUpdate(...tableNames: string[]): QueryBuilder;
forUpdate(tableNames: string[]): QueryBuilder;

forShare(...tableNames: string[]): QueryBuilder;
forShare(tableNames: string[]): QueryBuilder;

toSQL(): Sql;

Expand Down

0 comments on commit e7f69ad

Please sign in to comment.