Type Alias: UnionToIntersection<U>
ts
type UnionToIntersection<U> = U extends any
? (k) => void
: never extends (k) => void
? I
: never;Defined in: types/index.ts:8
Type Parameters
| Type Parameter |
|---|
U |

