type alias NullishSchemaimport { type NullishSchema } from "https://deno.land/x/valibot@v0.24.0/src/schemas/index.ts"; Nullish schema type. Type ParametersTWrapped extends BaseSchemaoptionalTDefault extends Input<TWrapped> | (() => Input<TWrapped> | undefined) | undefined = undefinedoptionalTOutput = TDefault extends Input<TWrapped> ? Output<TWrapped> : Output<TWrapped> | null | undefineddefinition: BaseSchema<Input<TWrapped> | null | undefined, TOutput> & { type: "nullish"; wrapped: TWrapped; default: TDefault; }