UNPKG

charlike

Version:

Small, fast, simple and streaming project scaffolder for myself, but not only. Supports hundreds of template engines through the @JSTransformers API or if you want custom `render` function passed through options

13 lines (12 loc) 403 B
/// <reference path="../../observable.ts" /> module Rx { export interface Observable<T> { /** * Pipes the existing Observable sequence into a Node.js Stream. * @param {Stream} dest The destination Node.js stream. * @returns {Stream} The destination stream. */ pipe<TDest>(dest: TDest): TDest; // TODO: Add link to node.d.ts some where } }