Reference

InferStandardSchemaOutput

Infers the output value type produced by a Standard Schema.

Signature

type InferStandardSchemaOutput = Schema extends { ~standard: { types?: infer Types } } ? NonNullable<Types> extends { output: infer Output } ? Output : never : never