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

KindOption

import type { KindOption } from "https://raw.githubusercontent.com/baetheus/fun/main/option.ts";

Specifies Option as a Higher Kinded Type, with covariant parameter A corresponding to the 0th index of any substitutions.

interface KindOption extends Kind {
readonly kind: Option<Out<this, 0>>;
}

§Extends

§Properties

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