rest-vir - v1.7.0
    Preparing search index...

    Type Alias EndpointImplementationHandledOutput

    Returned by an endpoint implementation that has taken full control of the response (e.g. SSE streaming via response.hijack()). When the framework receives this, it skips response validation, the post-hook, and the final response.send().

    type EndpointImplementationHandledOutput = {
        dataType?: never;
        headers?: never;
        responseData?: never;
        responseErrorMessage?: never;
        responseHandled: true;
        statusCode?: never;
    }
    Index

    Properties

    dataType?: never
    headers?: never
    responseData?: never
    responseErrorMessage?: never
    responseHandled: true

    The response has been fully handled by the endpoint implementation.

    statusCode?: never