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

x/proc/src/deps/tee.ts>TupleOf

A better way to work with processes in Deno.
Very Popular
Go to Latest
type alias TupleOf
import { type TupleOf } from "https://deno.land/x/proc@0.21.9/src/deps/tee.ts";

Utility for representing n-tuple of. Used in Tuple.

Type Parameters

T
N extends number
R extends unknown[]
definition: R["length"] extends N ? R : TupleOf<T, N, [T, ...R]>