import { Nullable as Nullable$1 } from "../node_modules/.pnpm/@antfu_utils@9.3.0/node_modules/@antfu/utils/dist/index.mjs"; //#region src/types/nullable.d.ts /** * Widens `T` to also allow the nullish values `null` and `undefined`, producing * `T | null | undefined`. The inverse of `NonNullable`. * @example * type MaybeName = Nullable; // string | null | undefined * @example * // Strip the nullish part back out * type Name = NonNullable>; // string */ type Nullable = Nullable$1; //#endregion export { Nullable };