import { pick } from "https://deno.land/x/valibot@v0.5.0/src/methods/pick/index.ts";
Creates an object schema that contains only the selected keys of an existing schema.
Type Parameters
TObjectSchema extends ObjectSchema<any>
TKeys extends (keyof TObjectSchema["object"])[]
Parameters
schema: TObjectSchema
The schema to pick from.
keys: TKeys
The selected keys
optional
pipe: Pipe<ObjectOutput<Pick<TObjectSchema["object"], TKeys[number]>>>A validation and transformation pipe.
Returns
ObjectSchema<Pick<TObjectSchema["object"], TKeys[number]>>
An object schema.
Creates an object schema that contains only the selected keys of an existing schema.
Type Parameters
TObjectSchema extends ObjectSchema<any>
TKeys extends (keyof TObjectSchema["object"])[]
Parameters
schema: TObjectSchema
The schema to pick from.
keys: TKeys
The selected keys
optional
pipe: Pipe<ObjectOutput<Pick<TObjectSchema["object"], TKeys[number]>>>A validation and transformation pipe.
Returns
ObjectSchema<Pick<TObjectSchema["object"], TKeys[number]>>
An object schema.