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

Fix

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

Fix a concrete type as a non-substituting Kind. This allows one to define algebraic structures over things like number, string, etc.

interface Fix <A> extends Kind {
readonly kind: A;
}

§Type Parameters

§Extends

§Properties

§
readonly kind: A
[src]