⚠️ Internal: This API is not publically exported by the package.

      Interface ReadableStreamBYOBReader

      interface ReadableStreamBYOBReader {
          closed: Promise<undefined>;
          cancel(reason?): Promise<void>;
          read<T>(view, options?): Promise<ReadableStreamReadResult<T>>;
          releaseLock(): void;
      }

      Hierarchy

      Methods

      Properties

      Methods

      Properties

      closed: Promise<undefined>