Type Alias ApplyOmit<T, OmitConfig>

ApplyOmit<T, OmitConfig>: Compute<{
    [K in keyof T as OmitValue<OmitConfig, K> extends true
        ? never
        : K]: T[K]
}>

Type Parameters

  • T
  • OmitConfig