Type alias UnionToIntersection<U>

UnionToIntersection<U>: (U extends any
        ? ((k) => void)
        : never) extends ((k) => void)
    ? I
    : never

Computes the intersection of a set of types, given the union of those types.

From: https://stackoverflow.com/a/56375136

Type Parameters

  • U

Generated using TypeDoc