Skip to content

Commit

Permalink
refactor(fp): reorder files
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharmath committed Mar 21, 2017
1 parent 628ed05 commit 9db06e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fp.ts
Expand Up @@ -11,18 +11,18 @@ export {frames} from './src/sources/Frames'
export {fromDOM} from './src/sources/FromDOM'
export {fromPromise} from './src/sources/FromPromise'
export {interval} from './src/sources/Interval'
export {IObservable} from './src/lib/Observable'
export {IObserver} from './src/lib/Observer'
export {ISubscriberFunction} from './src/lib/SubscriberFunction'
export {ISubscription} from './src/lib/Subscription'
export {join, flatMap} from './src/operators/Join'
export {map} from './src/operators/Map'
export {merge} from './src/operators/Merge'
export {multicast} from './src/operators/Multicast'
export {IObservable} from './src/lib/Observable'
export {IObserver} from './src/lib/Observer'
export {of} from './src/sources/FromArray'
export {reduce} from './src/operators/Reduce'
export {sample} from './src/operators/Sample'
export {scan} from './src/operators/Scan'
export {skipRepeats} from './src/operators/SkipRepeats'
export {slice} from './src/operators/Slice'
export {ISubscriberFunction} from './src/lib/SubscriberFunction'
export {ISubscription} from './src/lib/Subscription'
export {switchLatest, switchMap} from './src/operators/Switch'

0 comments on commit 9db06e9

Please sign in to comment.