Skip to main content
Module

x/fun/showable.ts>tuple

A collection of algebraic data types, lenses, and schemables based on a light weight higher kinded type implementation. Written for deno.
Go to Latest
variable tuple
import { tuple } from "https://deno.land/x/fun@v2.0.0-alpha.12/showable.ts";

type

<A extends ReadonlyArray<unknown>>(...shows: [K in keyof A]: Showable<A[K]>) => Showable<Readonly<A>>