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

15 lines (12 loc) 380 B
/// <reference path="../observable.ts" /> module Rx { export interface GroupedObservable<TKey, TElement> extends Observable<TElement> { key: TKey; underlyingObservable: Observable<TElement>; } } (function() { var go: Rx.GroupedObservable<string, boolean>; var k: string = go.key; var o : Rx.Observable<boolean> = go.underlyingObservable; });