Type alias Omit<T, K>

Omit<T, K extends keyof any>: 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

Generated using TypeDoc