Interface RequestResult<B>

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

Type Parameters

  • B

Properties

download: AsyncGenerator<ProgressData, any, any>
response: Promise<Response<B>>
upload?: AsyncGenerator<ProgressData, any, any>
MMNEPVFCICPMFPCPTTAAATR