type alias DeepPickNRe-exportimport { type DeepPickN } from "https://deno.land/x/valibot@v0.35.0/src/index.ts"; Deeply picks N specific keys. Type ParametersTInputTPathList extends readonly PathKeys<TInput>[]definition: TPathList extends readonly [infer TPathKeys extends PathKeys<TInput>, ...infer TRest extends PathKeys<TInput>[]] ? TRest extends readonly [unknown, ...(readonly unknown[])] ? DeepMerge<DeepPick<TInput, TPathKeys>, DeepPickN<TInput, TRest>> : DeepPick<TInput, TPathKeys> : TInput