type _IsUnion = U extends any ? [T] extends [U] ? false : true : false; /** * whether `T` is a union type * * @since 0.0.2 */ export type IsUnion = _IsUnion; export {}; //# sourceMappingURL=is-union.d.ts.map