import {Exclude} from './Exclude'

/** Remove **`undefined`** & **`null`** out of **`U`**
 * @param U to make non-nullable
 * @returns **union**
 * @example
 * ```ts
 * ```
 */
export type NonNullable<U extends any> =
    Exclude<U, undefined | null>
