/** * Add `undefined | null` to `U` * @param U to make nullable * @returns [[Union]] * @example * ```ts * ``` */ export declare type Nullable = U | undefined | null;