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

Substitutions

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

The Substitutions type splits the different type level substitutions into tuples based on variance.

type Substitutions = {
readonly [out]: unknown[];
readonly [in]: unknown[];
readonly [inout]: unknown[];
}
;

§Type

§
{
readonly [out]: unknown[];
readonly [in]: unknown[];
readonly [inout]: unknown[];
}
[src]