Typescript Library Declarations (ES2023)
Type Alias Omit<T, K>
Omit
<
T
,
K
>
:
Pick
<
T
,
Exclude
<
keyof
T
,
K
>
>
Construct a type with the properties of T except for those in type K.
Type Parameters
T
K
extends
keyof
any
Settings
Member Visibility
Inherited
Theme
OS
Light
Dark
Typescript Library Declarations (ES2023)
Construct a type with the properties of T except for those in type K.