Skip to main content
Module

x/curry/curry.ts>UnionFactorial

Currying and partial application utilities
Latest
type alias UnionFactorial
import { type UnionFactorial } from "https://deno.land/x/curry@1.1.0/curry.ts";

Type Parameters

T extends AnyArray
definition: T extends readonly [] ? never : T | UnionFactorial<Pop<T>>