Repository URL to install this package:
|
Version:
6.0.4 ▾
|
export type MapIndexIteratee<Obj> = (
value: Obj[keyof Obj],
index: keyof Obj | string | number | symbol,
listOrObj: Obj | any[]
) => string | number | symbol
export type MapObjIteratee = MapIndexIteratee<any>
export type MapObjOrArrayKeysIteratee = MapIndexIteratee<any>
export type MapObjOrArrayValsIteratee = MapIndexIteratee<any>
export type MapObjValuesIteratee = MapIndexIteratee<any>