Skip to content

Commit

Permalink
Fix AnalyticFunction type (#5304)
Browse files Browse the repository at this point in the history
affecting rowNumber, rank and DenseRank
  • Loading branch information
patrick330602 committed Aug 28, 2022
1 parent 4ab0403 commit 579ab4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/index.d.ts
Expand Up @@ -1918,11 +1918,11 @@ export declare namespace Knex {
| TKey
| TKey[]
| {
columnName: TKey;
column: TKey;
order?: 'asc' | 'desc';
nulls?: 'first' | 'last';
},
partitionBy?: TKey | TKey[] | { columnName: TKey; order?: 'asc' | 'desc' }
partitionBy?: TKey | TKey[] | { column: TKey; order?: 'asc' | 'desc' }
): QueryBuilder<TRecord, TResult2>;
}

Expand Down

0 comments on commit 579ab4b

Please sign in to comment.