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
18 lines (14 loc) • 467 B
text/typescript
/// <reference path="../../observable.ts" />
module Rx {
export interface Observable<T> {
/**
* Merges an observable sequence of observable sequences into an observable sequence.
* @returns {Observable} The observable sequence that merges the elements of the inner sequences.
*/
mergeAll(): T;
}
}
(function() {
var o: Rx.Observable<Rx.Observable<string>>;
var oo : Rx.Observable<string> = o.mergeAll();
});