Type Utils
    Preparing search index...

    Type Alias SuccessResult<Output>

    type SuccessResult<Output = unknown> = {
        issues?: undefined;
        success: true;
        value: Output;
    }

    Type Parameters

    • Output = unknown
    Index

    Properties

    Properties

    issues?: undefined
    success: true
    value: Output