Type Alias: TaskEither()<E, A>
Technical Preview
The Functional Programming API is a technical preview. Its surface may change in future releases without following semver.
type TaskEither<E, A> = () => Promise<Either<E, A>>;
Defined in: fp-ts.ts:12
Type Parameters
E
E
A
A
Returns
Promise<Either<E, A>>