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