Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SyncEither

import type { SyncEither } from "https://github.gh-proxy.cn/raw.githubusercontent.com/baetheus/fun/main/sync_either.ts";

The SyncEither type represents a lazy computation that returns an Either.

type SyncEither<L, R> = Sync<Either<L, R>>;

§Type Parameters

§Type