UNPKG
deep-map-keys
Version:
latest (2.0.1)
2.0.1
2.0.0
1.2.0
1.1.2
1.1.1
1.1.0
1.0.0
Transforms nested keys of complex objects
github.com/mcmath/deep-map-keys
mcmath/deep-map-keys
deep-map-keys
/
lib
/
index.d.ts
4 lines
(3 loc)
•
148 B
TypeScript
View Raw
1
2
3
4
import
{
MapFn
,
Opts
}
from
'./deep-map-keys'
;
declare
function
deepMapKeys<T>(
object
:
any
,
mapFn
:
MapFn
,
options
?:
Opts
): T;
export
= deepMapKeys;