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

12 lines (9 loc) 287 B
/// <reference path="./observable.ts" /> module Rx { export interface AnonymousObservable<T> extends Observable<T> { } } (function() { var observable: Rx.Observable<number>; var anonymousObservable: Rx.AnonymousObservable<number>; observable = anonymousObservable; });