UNPKG

@tempots/std

Version:

Std library for TypeScript. Natural complement to the Tempo libraries.

2 lines (1 loc) 88 B
export type IsUnion<T, U = T> = T extends any ? [U] extends [T] ? false : true : never;