The result interface if validation succeeds.

interface SuccessResult<Output> {
    issues?: undefined;
    value: Output;
}

Type Parameters

  • Output

Properties

Properties

issues?: undefined

The non-existent issues.

value: Output

The typed output value.