Interface Readable<T>

A interface that emulates the API shape of a node.js readable for use in desktop and web environments.

interface Readable<T> {
    read(): null | T;
}

Type Parameters

  • T

Hierarchy (view full)

Methods

Methods