Skip to main content
Module

x/valibot/src/types/utils.ts>UnionToTuple

The modular and type safe schema library for validating structural data 🤖
Extremely Popular
Go to Latest
type alias UnionToTuple
import { type UnionToTuple } from "https://deno.land/x/valibot@v0.37.0/src/types/utils.ts";

Converts union to tuple type.

definition: UnionToIntersect<TUnion extends never ? never : () => TUnion> extends () => infer TLast ? [...UnionToTuple<Exclude<TUnion, TLast>>, TLast] : []