This function turns a string-keyed record or object literal of
AsyncEitherLike "inside out". For example:
Record<string, AsyncEither<E, T>> becomes AsyncEither<E, Record<string, T>>{ x: AsyncEither<E, T1>, y: AsyncEither<E, T2> } becomes
AsyncEither<E, { x: T1, y: T2 }>Generated using TypeDoc
Concurrently evaluate
EitherorAsyncEitherLikein a string-keyed record or object literal and collect theRightvalues in an equivalent structure.