interface Stream<T> {
    read(): Promise<T>;
    write(data: T): Promise<void>;
}

Type Parameters

  • T

Implemented by

Methods

Methods