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

x/tsafe/mod.ts>UnionToIntersection

🔩 The missing TypeScript utils
Latest
type alias UnionToIntersection
import { type UnionToIntersection } from "https://deno.land/x/tsafe@v1.7.2/mod.ts";
definition: (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never