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

KindReadonlySet

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

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

interface KindReadonlySet extends Kind {
readonly kind: ReadonlySet<Out<this, 0>>;
}

§Extends

§Properties

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