UNPKG
reducer-tools
Version:
beta (1.0.0-beta4)
latest (1.0.0)
1.0.0
1.0.0-beta4
1.0.0-beta2
1.0.0-beta1
0.2.1
0.2.0
0.1.0
redux reducer utilities
github.com/ruanyl/reducer-tools
ruanyl/reducer-tools
reducer-tools
/
lib
/
typedKeyMirror.d.ts
5 lines
(4 loc)
•
225 B
TypeScript
View Raw
1
2
3
4
5
export
declare
type
Mirrored
<T
extends
Record
<
string
,
any
>> = { [K
in
keyof T]: K; };
export
declare
const
typedKeyMirror
: <T
extends
Record
<
string
,
any
>>
(
keyMap
: T,
namespace
:
string
,
separator
?:
string
) =>
Mirrored
<T>;