2
2
// Subject imported before Observable to bypass circular dependency issue since
3
3
// Subject extends Observable and Observable references Subject in it's
4
4
// definition
5
- export { Subject , AnonymousSubject } from './Subject' ;
5
+ export { Subject , AnonymousSubject } from './internal/ Subject' ;
6
6
/* tslint:enable:no-unused-variable */
7
- export { Observable } from './Observable' ;
7
+ export { Observable } from './internal/ Observable' ;
8
8
9
9
// statics
10
10
/* tslint:disable:no-use-before-declare */
@@ -143,15 +143,15 @@ import './add/operator/zip';
143
143
import './add/operator/zipAll' ;
144
144
145
145
/* tslint:disable:no-unused-variable */
146
- export { Operator } from './Operator' ;
147
- export { Observer } from './Observer' ;
148
- export { Subscription } from './Subscription' ;
149
- export { Subscriber } from './Subscriber' ;
150
- export { AsyncSubject } from './AsyncSubject' ;
151
- export { ReplaySubject } from './ReplaySubject' ;
152
- export { BehaviorSubject } from './BehaviorSubject' ;
146
+ export { Operator } from './internal/ Operator' ;
147
+ export { Observer } from './internal/ Observer' ;
148
+ export { Subscription } from './internal/ Subscription' ;
149
+ export { Subscriber } from './internal/ Subscriber' ;
150
+ export { AsyncSubject } from './internal/ AsyncSubject' ;
151
+ export { ReplaySubject } from './internal/ ReplaySubject' ;
152
+ export { BehaviorSubject } from './internal/ BehaviorSubject' ;
153
153
export { ConnectableObservable } from './internal/observable/ConnectableObservable' ;
154
- export { Notification } from './Notification' ;
154
+ export { Notification } from './internal/ Notification' ;
155
155
export { EmptyError } from './util/EmptyError' ;
156
156
export { ArgumentOutOfRangeError } from './util/ArgumentOutOfRangeError' ;
157
157
export { ObjectUnsubscribedError } from './util/ObjectUnsubscribedError' ;
@@ -160,18 +160,18 @@ export {UnsubscriptionError} from './util/UnsubscriptionError';
160
160
export { TimeInterval } from './internal/patching/operator/timeInterval' ;
161
161
export { Timestamp } from './internal/operators/timestamp' ;
162
162
export { TestScheduler } from './testing/TestScheduler' ;
163
- export { VirtualTimeScheduler } from './scheduler/VirtualTimeScheduler' ;
163
+ export { VirtualTimeScheduler } from './internal/ scheduler/VirtualTimeScheduler' ;
164
164
export { AjaxRequest , AjaxResponse , AjaxError , AjaxTimeoutError } from './internal/observable/dom/AjaxObservable' ;
165
165
export { pipe } from './util/pipe' ;
166
166
167
- import { asap } from './scheduler/asap' ;
168
- import { async } from './scheduler/async' ;
169
- import { queue } from './scheduler/queue' ;
170
- import { animationFrame } from './scheduler/animationFrame' ;
171
- import { AsapScheduler } from './scheduler/AsapScheduler' ;
172
- import { AsyncScheduler } from './scheduler/AsyncScheduler' ;
173
- import { QueueScheduler } from './scheduler/QueueScheduler' ;
174
- import { AnimationFrameScheduler } from './scheduler/AnimationFrameScheduler' ;
167
+ import { asap } from './internal/ scheduler/asap' ;
168
+ import { async } from './internal/ scheduler/async' ;
169
+ import { queue } from './internal/ scheduler/queue' ;
170
+ import { animationFrame } from './internal/ scheduler/animationFrame' ;
171
+ import { AsapScheduler } from './internal/ scheduler/AsapScheduler' ;
172
+ import { AsyncScheduler } from './internal/ scheduler/AsyncScheduler' ;
173
+ import { QueueScheduler } from './internal/ scheduler/QueueScheduler' ;
174
+ import { AnimationFrameScheduler } from './internal/ scheduler/AnimationFrameScheduler' ;
175
175
import { rxSubscriber } from './symbol/rxSubscriber' ;
176
176
import { iterator } from './symbol/iterator' ;
177
177
import { observable } from './symbol/observable' ;
0 commit comments