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

17 lines (14 loc) 429 B
/// <reference path="../../observable.ts" /> module Rx { export interface Observable<T> { /** * Hides the identity of an observable sequence. * @returns {Observable} An observable sequence that hides the identity of the source sequence. */ asObservable(): Observable<T>; } } (function() { var s : Rx.Subject<boolean>; var o : Rx.Observable<boolean> = s.asObservable(); });