Skip to content

Commit

Permalink
util: fix sortBy() TS def
Browse files Browse the repository at this point in the history
  • Loading branch information
kumilingus committed Jan 30, 2021
1 parent 8b8615a commit 7b6080d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/joint.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2720,7 +2720,7 @@ export namespace util {

export function groupBy(collection: Collection, iteratee?: Iteratee): object;

export function sortBy(collection: Collection, iterateesArray: Iteratee[]): any[];
export function sortBy(collection: Collection, iteratee?: Iteratee[] | Iteratee): any[];

export function flattenDeep(array: any[]): any[];

Expand Down

0 comments on commit 7b6080d

Please sign in to comment.