UNPKG

ts-essentials

Version:
3 lines (2 loc) 152 B
import { UnionToIntersection } from "../union-to-intersection"; export type NonUnion<Type> = [Type] extends [UnionToIntersection<Type>] ? Type : never;