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

KindState

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

Specifies State as a Higher Kinded Type, with covariant parameter A in the 0th index of any substitutions and invariant parameter E in the 0th parameter of any substitutions.

interface KindState extends Kind {
readonly kind: State<InOut<this, 1>, Out<this, 0>>;
}

§Extends

§Properties

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