KoAJAX
    Preparing search index...

    Interface RequestResult<B>

    interface RequestResult<B> {
        download: AsyncGenerator<ProgressData>;
        response: Promise<Response<B>>;
        upload?: AsyncGenerator<ProgressData>;
    }

    Type Parameters

    • B
    Index

    Properties

    response: Promise<Response<B>>