TaskEither overview
Added in v0.0.7
Table of contents
mapping
flatMapValidation
Signature
export declare const flatMapValidation: <A, B>(
f: (a: A) => E.Either<Errors, B>
) => (self: TaskEither<A>) => TaskEither<B>
Added in v0.0.7
models
TaskEither (type alias)
Signature
export type TaskEither<A> = TE.TaskEither<Error, A>
Added in v0.0.7
utils
tryCatch
Signature
export declare const tryCatch: <A>(f: LazyArg<Promise<A>>) => TaskEither<A>
Added in v0.0.7