File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -126,4 +126,10 @@ describe('index', () => {
126126 expect ( index . withLatestFrom ) . to . exist ;
127127 expect ( index . zipAll ) . to . exist ;
128128 } ) ;
129+
130+ it ( 'should export the Subject types' , ( ) => {
131+ expect ( index . Subject ) . to . exist ;
132+ expect ( index . BehaviorSubject ) . to . exist ;
133+ expect ( index . ReplaySubject ) . to . exist ;
134+ } ) ;
129135} ) ;
Original file line number Diff line number Diff line change @@ -127,3 +127,8 @@ export { windowToggle } from './operators/windowToggle';
127127export { windowWhen } from './operators/windowWhen' ;
128128export { withLatestFrom } from './operators/withLatestFrom' ;
129129export { zipAll } from './operators/zipAll' ;
130+
131+ /* Subjects */
132+ export { Subject } from './Subject' ;
133+ export { BehaviorSubject } from './BehaviorSubject' ;
134+ export { ReplaySubject } from './ReplaySubject' ;
You can’t perform that action at this time.
0 commit comments