UNPKG

@rxx/worker

Version:

React MVI micro framework.

9 lines (8 loc) 287 B
import { Subject } from 'rxjs'; export interface StreamCollection { hasWithoutGlobal(key: string): boolean; has(key: string): boolean; getWithoutGlobal(key: string): Subject<any>; get(key: string, create?: boolean): Subject<any>[]; add<T>(key: string): Subject<T>; }