UnionToIntersection
Signature
export type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never;Private types
UnionToIntersectionTypeAlias
type UnionToIntersection<T> = (T extends unknown ? (value: T) => void : never) extends (value: infer R) => void ? R : never;Members
This export does not declare public properties or methods in the generated declaration file.