Type Alias OmitValue<Omit, Key>

OmitValue<Omit, Key>: Key extends keyof Omit
    ? Omit[Key]
    : false

Type Parameters

  • Omit
  • Key