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
17 lines (14 loc) • 483 B
text/typescript
/// <reference path="../../observable.ts" />
module Rx {
export interface Observable<T> {
/**
* Concatenates an observable sequence of observable sequences.
* @returns {Observable} An observable sequence that contains the elements of each observed inner sequence, in sequential order.
*/
concatAll(): T;
}
}
(function() {
var o: Rx.Observable<Rx.Observable<string>>;
var oo : Rx.Observable<string> = o.concatAll();
});