Libraries
    Preparing search index...

    The result interface if validation succeeds.

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

    Type Parameters

    • Output
    Index

    Properties

    Properties

    issues?: undefined

    A falsy value for issues indicates success.

    value: Output

    The typed output value.