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

tuple

import { tuple } from "https://raw.githubusercontent.com/baetheus/fun/main/showable.ts";
const tuple: <A extends ReadonlyArray<unknown>>(...shows: [K in keyof A]: Showable<A[K]>) => Showable<Readonly<A>>;