UNPKG

cv-dialog-sdk

Version:

Catavolt Dialog Javascript API

11 lines (10 loc) 292 B
import { ClientResponse } from './ClientResponse'; export class ReadableStreamClientResponse extends ClientResponse { constructor(value, statusCode) { super(value, statusCode); this.reader = value.getReader(); } read() { return this.reader.read(); } }