Repository URL to install this package:
|
Version:
6.0.4 ▾
|
import { AnyObj } from '../../_typings'
export interface Comparator<Value = any, ReturnValue = any> extends Function {
(a: Value, b: Value): ReturnValue
}
export interface SortByIteratee<
Obj = AnyObj,
Key = string | symbol | number,
Collection = any[]
> {
(value: Obj[keyof Obj], key: Key, list: Collection): any
}