import { partialAsync } from "https://deno.land/x/valibot@v0.5.0/src/methods/partial/partialAsync.ts";
Creates an async object schema consisting of all properties of an existing object schema set to optional.
Type Parameters
TObjectSchema extends ObjectSchema<any> | ObjectSchemaAsync<any>
Parameters
schema: TObjectSchema
The affected scheme.
optional
pipe: Pipe<ObjectOutput<Partial<TObjectSchema["object"]>>>A validation and transformation pipe.
Returns
ObjectSchemaAsync<Partial<TObjectSchema["object"]>>
An async object schema.
Creates an async object schema consisting of all properties of an existing object schema set to optional.
Type Parameters
TObjectSchema extends ObjectSchema<any> | ObjectSchemaAsync<any>
Parameters
schema: TObjectSchema
The affected scheme.
optional
pipe: Pipe<ObjectOutput<Partial<TObjectSchema["object"]>>>A validation and transformation pipe.
Returns
ObjectSchemaAsync<Partial<TObjectSchema["object"]>>
An async object schema.