15
15
/* Observable */
16
16
export { Observable } from './internal/Observable' ;
17
17
export { ConnectableObservable } from './internal/observable/ConnectableObservable' ;
18
- export type { GroupedObservable } from './internal/operators/groupBy' ;
19
- export type { Operator } from './internal/Operator' ;
18
+ export { GroupedObservable } from './internal/operators/groupBy' ;
19
+ export { Operator } from './internal/Operator' ;
20
20
export { observable } from './internal/symbol/observable' ;
21
21
export { animationFrames } from './internal/observable/dom/animationFrames' ;
22
22
@@ -97,8 +97,7 @@ export { NEVER } from './internal/observable/never';
97
97
export * from './internal/types' ;
98
98
99
99
/* Config */
100
- export { config } from './internal/config' ;
101
- export type { GlobalConfig } from './internal/config' ;
100
+ export { config , GlobalConfig } from './internal/config' ;
102
101
103
102
/* Operators */
104
103
export { audit } from './internal/operators/audit' ;
@@ -116,8 +115,7 @@ export { concatAll } from './internal/operators/concatAll';
116
115
export { concatMap } from './internal/operators/concatMap' ;
117
116
export { concatMapTo } from './internal/operators/concatMapTo' ;
118
117
export { concatWith } from './internal/operators/concatWith' ;
119
- export { connect } from './internal/operators/connect' ;
120
- export type { ConnectConfig } from './internal/operators/connect' ;
118
+ export { connect , ConnectConfig } from './internal/operators/connect' ;
121
119
export { count } from './internal/operators/count' ;
122
120
export { debounce } from './internal/operators/debounce' ;
123
121
export { debounceTime } from './internal/operators/debounceTime' ;
@@ -140,8 +138,7 @@ export { finalize } from './internal/operators/finalize';
140
138
export { find } from './internal/operators/find' ;
141
139
export { findIndex } from './internal/operators/findIndex' ;
142
140
export { first } from './internal/operators/first' ;
143
- export { groupBy } from './internal/operators/groupBy' ;
144
- export type { BasicGroupByOptions , GroupByOptionsWithElement } from './internal/operators/groupBy' ;
141
+ export { groupBy , BasicGroupByOptions , GroupByOptionsWithElement } from './internal/operators/groupBy' ;
145
142
export { ignoreElements } from './internal/operators/ignoreElements' ;
146
143
export { isEmpty } from './internal/operators/isEmpty' ;
147
144
export { last } from './internal/operators/last' ;
@@ -168,18 +165,15 @@ export { raceWith } from './internal/operators/raceWith';
168
165
export { reduce } from './internal/operators/reduce' ;
169
166
export { repeat } from './internal/operators/repeat' ;
170
167
export { repeatWhen } from './internal/operators/repeatWhen' ;
171
- export { retry } from './internal/operators/retry' ;
172
- export type { RetryConfig } from './internal/operators/retry' ;
168
+ export { retry , RetryConfig } from './internal/operators/retry' ;
173
169
export { retryWhen } from './internal/operators/retryWhen' ;
174
170
export { refCount } from './internal/operators/refCount' ;
175
171
export { sample } from './internal/operators/sample' ;
176
172
export { sampleTime } from './internal/operators/sampleTime' ;
177
173
export { scan } from './internal/operators/scan' ;
178
174
export { sequenceEqual } from './internal/operators/sequenceEqual' ;
179
- export { share } from './internal/operators/share' ;
180
- export type { ShareConfig } from './internal/operators/share' ;
181
- export { shareReplay } from './internal/operators/shareReplay' ;
182
- export type { ShareReplayConfig } from './internal/operators/shareReplay' ;
175
+ export { share , ShareConfig } from './internal/operators/share' ;
176
+ export { shareReplay , ShareReplayConfig } from './internal/operators/shareReplay' ;
183
177
export { single } from './internal/operators/single' ;
184
178
export { skip } from './internal/operators/skip' ;
185
179
export { skipLast } from './internal/operators/skipLast' ;
@@ -196,13 +190,11 @@ export { takeLast } from './internal/operators/takeLast';
196
190
export { takeUntil } from './internal/operators/takeUntil' ;
197
191
export { takeWhile } from './internal/operators/takeWhile' ;
198
192
export { tap } from './internal/operators/tap' ;
199
- export { throttle } from './internal/operators/throttle' ;
200
- export type { ThrottleConfig } from './internal/operators/throttle' ;
193
+ export { throttle , ThrottleConfig } from './internal/operators/throttle' ;
201
194
export { throttleTime } from './internal/operators/throttleTime' ;
202
195
export { throwIfEmpty } from './internal/operators/throwIfEmpty' ;
203
196
export { timeInterval } from './internal/operators/timeInterval' ;
204
- export { timeout } from './internal/operators/timeout' ;
205
- export type { TimeoutConfig , TimeoutInfo } from './internal/operators/timeout' ;
197
+ export { timeout , TimeoutConfig , TimeoutInfo } from './internal/operators/timeout' ;
206
198
export { timeoutWith } from './internal/operators/timeoutWith' ;
207
199
export { timestamp } from './internal/operators/timestamp' ;
208
200
export { toArray } from './internal/operators/toArray' ;
0 commit comments