@nextcloud/files
    Preparing search index...

    Variable ReadableStream

    ReadableStream: {
        prototype: ReadableStream;
        from<R = any>(
            iterable: Iterable<R, any, any> | AsyncIterable<R, any, any>,
        ): ReadableStream<R>;
        new (
            underlyingSource: UnderlyingByteSource,
            strategy?: { highWaterMark?: number },
        ): ReadableStream<NonSharedUint8Array>;
        new <R = any>(
            underlyingSource: UnderlyingDefaultSource<R>,
            strategy?: QueuingStrategy<R>,
        ): ReadableStream<R>;
        new <R = any>(
            underlyingSource?: UnderlyingSource<R>,
            strategy?: QueuingStrategy<R>,
        ): ReadableStream<R>;
    }

    Type Declaration