import { type IsEmptyObject } from 'type-fest';
/**
 * Excludes empty objects from a union.
 *
 * @category Object
 * @category Package : @augment-vir/common
 * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common)
 */
export type ExcludeEmpty<T> = IsEmptyObject<T> extends true ? never : T;
