The result interface if validation succeeds.

interface StandardSuccessResult<TOutput> {
    issues?: undefined;
    value: TOutput;
}

Type Parameters

  • TOutput

Properties

Properties

issues?: undefined

The non-existent issues.

value: TOutput

The typed output value.