fix(core): update
This commit is contained in:
@ -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;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -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';
|
||||
|
||||
|
Reference in New Issue
Block a user