Skip to content

Commit

Permalink
feat(main): export core types
Browse files Browse the repository at this point in the history
core types can be reused externally
  • Loading branch information
tusharmath committed Nov 1, 2016
1 parent 8c0b9b9 commit ad52802
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@

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'
Expand All @@ -19,6 +24,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'

0 comments on commit ad52802

Please sign in to comment.