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

    Type Alias FetchStreamEndpointOutput

    FetchStreamEndpointOutput:
        | Readonly<
            {
                ok: true;
                response: Readonly<Response>;
                stream: ReadableStream<Uint8Array>;
            },
        >
        | Readonly<
            { data: string
            | undefined; ok: false; response: Readonly<Response> },
        >

    Type safe output from sending a stream request to an endpoint definition. Used by fetchStreamEndpoint.