Reference

InferStandardSchemaInput

Infers the input value type accepted by a Standard Schema.

Signature

type InferStandardSchemaInput = Schema extends { ~standard: { types?: infer Types } } ? NonNullable<Types> extends { input: infer Input } ? Input : never : never