Type alias IntersectingProps<T1, T2>

IntersectingProps<T1, T2>: {
    [x in CommonKeys<T1, T2>]: T1[x] | T2[x]
}

Type Parameters

  • T1

  • T2

Generated using TypeDoc