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

KindSortable

import type { KindSortable } from "https://raw.githubusercontent.com/baetheus/fun/main/sortable.ts";

Specifies Sortable as a Higher Kinded Type, with contravariant parameter D corresponding to the 0th index of any Substitutions.

interface KindSortable extends Kind {
readonly kind: Sortable<In<this, 0>>;
}

§Extends

§Properties

§
readonly kind: Sortable<In<this, 0>>
[src]