Omit<T, K> Type alias
Create a type with T
properties excluding properties listed in K
.
Usage example: Omit<SomeType, "exclude_prop1" | "exclude_prop2">
Omit = Pick<T, Exclude<, K>>
Defined in
- presentation/common/src/Utils.ts Line 20
Last Updated: 13 June, 2024