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

Link

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

A Link represents a combination of two Free structures.

type Link<A> = {
readonly tag: "Link";
readonly first: Free<A>;
readonly second: Free<A>;
}
;

§Type Parameters

§Type

§
{
readonly tag: "Link";
readonly first: Free<A>;
readonly second: Free<A>;
}
[src]