Utility type to infer the input type of a schema. Extracts the expected input type before validation and transformation.
The schema to infer the input type from
const schema = vine.string().optional()type Input = InferInput<typeof schema>// type Input = string | undefined Copy
const schema = vine.string().optional()type Input = InferInput<typeof schema>// type Input = string | undefined
Utility type to infer the input type of a schema. Extracts the expected input type before validation and transformation.