Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/proc/legacy/deps.ts>Tuple

A better way to work with processes in Deno.
Latest
type alias Tuple
import { type Tuple } from "https://deno.land/x/proc@0.21.9/legacy/deps.ts";

Utility for representing n-tuple. Used in tee.

Type Parameters

T
N extends number
definition: N extends N ? number extends N ? T[] : TupleOf<T, N, []> : never