@mathjax/src
Preparing search index...
types/Types
OPTIONAL
Type Alias OPTIONAL<T>
OPTIONAL
:
{
[
t
in
keyof
T
]
?:
T
[
t
]
extends
any
[]
?
T
[
t
]
:
T
[
t
]
extends
(
...
args
:
any
)
=>
any
?
T
[
t
]
:
T
[
t
]
extends
object
?
OPTIONAL
<
T
[
t
]
>
:
T
[
t
]
}
Recursively makes all object keys optional
Type Parameters
T
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
@mathjax/src
Loading...
Recursively makes all object keys optional