type alias OptionalSchemaAsyncRe-exportimport { type OptionalSchemaAsync } from "https://deno.land/x/valibot@v0.24.0/src/index.ts"; Optional schema async type. Type ParametersTWrapped extends BaseSchema | BaseSchemaAsyncoptionalTDefault extends Input<TWrapped> | (() => Input<TWrapped> | Promise<Input<TWrapped> | undefined> | undefined) | undefined = undefinedoptionalTOutput = Awaited<TDefault> extends Input<TWrapped> ? Output<TWrapped> : Output<TWrapped> | undefineddefinition: BaseSchemaAsync<Input<TWrapped> | undefined, TOutput> & { type: "optional"; wrapped: TWrapped; default: TDefault; }