T
StandardSchemaResult
The result of validating a value: either a success carrying the typed output or a failure carrying a list of issues.
Signature
ts
export type StandardSchemaResult<Output>
= | StandardSchemaSuccessResult<Output>
| StandardSchemaFailureResult;Type Parameters
Output