Preparing search index...
The search index is not available
Additional types and utils for TypeScript
type-plus
Omit
Type Alias Omit<T, K>
Omit
<
T
,
K
>
:
T
extends
unknown
?
Pick
<
T
,
Exclude
<
keyof
T
,
K
>
>
:
never
Omit properties from a type.
Type Parameters
T
K
extends
UnionKeys
<
T
>
Origin
typescript#28339
Origin Author
Titian Cernicova-Dragomir
Alternative
type-zoo
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
type-plus - v8.0.0-beta.6
Loading...
Omit properties from a type.