fix(core): update

This commit is contained in:
2020-06-26 00:52:51 +00:00
parent 389f502dd0
commit fa8fb5b622
5 changed files with 1552 additions and 94 deletions

View File

@ -1,7 +1,7 @@
import * as plugins from './smartrx.plugins';
export interface IEventEmitter<T = any> {
on: (eventNameArg: string, eventHandlerArg: ((eventPayload: T) => any)) => void;
on: (eventNameArg: string, eventHandlerArg: (eventPayload: T) => any) => void;
}
/**

View File

@ -1,10 +1,6 @@
// this file is intended to keep the bundle size down
export {
Observable,
Subject,
fromEvent
} from 'rxjs';
export { Observable, Subject, fromEvent, ReplaySubject } from 'rxjs';
import { startWith, takeUntil, map } from 'rxjs/operators';