Typescript Library Declarations (ES2023)
Type Alias Pick<T, K>
Pick
<
T
,
K
>
:
{
[
P
in
K
]
:
T
[
P
]
}
From T, pick a set of properties whose keys are in the union K
Type Parameters
T
K
extends
keyof
T
Settings
Member Visibility
Inherited
Theme
OS
Light
Dark
Typescript Library Declarations (ES2023)
From T, pick a set of properties whose keys are in the union K