Preparing search index...
The search index is not available
ixfx
ixfx
RecursiveReplace
Type Alias RecursiveReplace<TShape, TFieldValue>
Recursive
Replace
<
TShape
,
TFieldValue
>
:
{
[
P
in
keyof
TShape
]
:
TShape
[
P
]
extends
(
infer
U
)
[]
?
RecursiveReplace
<
U
,
TFieldValue
>
[]
:
TShape
[
P
]
extends
|
number
|
string
|
symbol
|
undefined
?
TFieldValue
:
RecursiveReplace
<
TShape
[
P
]
,
TFieldValue
>
}
Remaps
TShape
so each field has type
TFieldValue
. Recursive.
Type Parameters
TShape
TFieldValue
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
ixfx
Loading...
Remaps
TShape
so each field has typeTFieldValue
. Recursive.