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) 435 B
/// <reference path="../../observable.ts"/> module Rx { export interface Observable<T> { /** * Executes a transducer to transform the observable sequence * @param {Transducer} transducer A transducer to execute * @returns {Observable} An Observable sequence containing the results from the transducer. */ transduce(transducer: any): any; //TODO: Setup transducer } }