interface-forge - v2.5.0
    Preparing search index...

    Interface SuccessResult<Output>

    The result interface if validation succeeds.

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

    Type Parameters

    • Output
    Index

    Properties

    Properties

    issues?: undefined

    The non-existent issues.

    value: Output

    The typed output value.