Preparing search index...
The search index is not available
jimpex
jimpex
DeepReadonly
Type Alias DeepReadonly<T>
Deep
Readonly
<
T
>
:
{
readonly
[
P
in
keyof
T
]
:
T
[
P
]
extends
(
infer
U
)
[]
?
DeepReadonly
<
U
>
[]
:
T
[
P
]
extends
object
?
DeepReadonly
<
T
[
P
]
>
:
T
[
P
]
}
Utility to make a deep "readonly" of an existing type.
Type Parameters
T
The type to make a readonly of.
Settings
Member Visibility
Protected
Inherited
Theme
OS
Light
Dark
jimpex
Loading...
Utility to make a deep "readonly" of an existing type.