Options
All
  • Public
  • Public/Protected
  • All
Menu

Index

Type aliases

Type aliases

Without

Without<T, U>: {[ P in Exclude<keyof T, keyof U>]: never }

Type parameters

  • T

  • U

XOR

XOR<T, U>: (T | U) extends object ? (Without<T, U> & U) | (Without<U, T> & T) : T | U

Type parameters

  • T

  • U