export type UnionToIntersection = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? { [K in keyof I]: I[K]; } : never; //# sourceMappingURL=union-to-intersection.d.ts.map