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

KindRightPair

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

A Kind implementation used to fix the second parameter in a Pair. Otherwise it operates the same as Pair does.

interface KindRightPair <B> extends Kind {
readonly kind: Pair<Out<this, 0>, B>;
}

§Type Parameters

§Extends

§Properties

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