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

KindEither

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

Specifies Either as a Higher Kinded Type, with covariant parameter R corresponding to the 0th index and covariant parameter L corresponding to the 1st index of any substitutions.

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

§Extends

§Properties

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