diff --git a/src/main.ts b/src/main.ts index 612f22b..777126c 100644 --- a/src/main.ts +++ b/src/main.ts @@ -4,15 +4,10 @@ export {animationFrames} from './sources/AnimationFrames' export {filter} from './operators/Filter' -export {forEach} from './lib/ForEach' export {fromArray} from './sources/FromArray' export {fromDOM} from './sources/FromDOM' export {fromPromise} from './sources/FromPromise' export {interval} from './sources/Interval' -export {IObservable} from './types/core/IObservable' -export {IObserver} from './types/core/IObserver' -export {ISubscriberFunction} from './types/core/ISubscriberFunction' -export {ISubscription} from './types/core/ISubscription' export {join} from './operators/Join' export {map} from './operators/Map' export {merge} from './operators/Merge' @@ -24,6 +19,6 @@ export {sample} from './operators/Sample' export {scan} from './operators/Scan' export {skipRepeats} from './operators/SkipRepeats' export {slice} from './operators/Slice' +export {forEach} from './lib/ForEach' export {switchLatest} from './operators/Switch' export {tap} from './operators/Tap' -