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