UNPKG

ts-essentials

Version:
3 lines (2 loc) 196 B
import { UnionToIntersection } from "../union-to-intersection"; export type UnionKeys<UnionType> = keyof UnionToIntersection<UnionType extends UnionType ? Record<keyof UnionType, never> : never>;