interface ReadableStreamDefaultReader<R> {
    closed: Promise<undefined>;
    cancel(reason?: any): Promise<void>;
    read(): Promise<ReadableStreamReadResult<R>>;
    releaseLock(): void;
}

Type Parameters

  • R = any

Hierarchy-Diagram

UML class diagram of ReadableStreamDefaultReader
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Properties

Methods

Properties

closed: Promise<undefined>

Methods

  • Returns void