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

KindAsyncEither

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

Specifies AsyncEither as a Higher Kinded Type, with covariant parameter A corresponding to the 0th index of any substitutions and covariant parameter B corresponding to the 1st index of any substitutions.

interface KindAsyncEither extends Kind {
readonly kind: AsyncEither<Out<this, 1>, Out<this, 0>>;
}

§Extends

§Properties

§
readonly kind: AsyncEither<Out<this, 1>, Out<this, 0>>
[src]