ts-stream
Version:
Type-safe object streams with seamless support for backpressure, ending, and error handling
13 lines (12 loc) • 339 B
TypeScript
/**
* Promise-based object stream with seamless support for back-pressure and error
* handling, written in Typescript.
*
* Copyright (C) 2015 Martin Poelstra
* License: MIT
*/
export * from "./Stream";
export * from "./Transform";
export * from "./transformers";
export * from "./node";
export { Stream as default } from "./Stream";