Skip to content

Commit 29aa3af

Browse files
author
Kevin van der Vlist
committed
feat(Operator): Expose the Operator interface to library consumers
By exposing the Operator interface directly, consumers of Rx.ts can more easily implement their own operators by calling lift() with their own operator.
1 parent f3a163d commit 29aa3af

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Rx.ts

+2
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ import './add/operator/zip';
106106
import './add/operator/zipAll';
107107

108108
/* tslint:disable:no-unused-variable */
109+
import {Operator} from './Operator';
109110
import {Subscription} from './Subscription';
110111
import {Subscriber} from './Subscriber';
111112
import {AsyncSubject} from './subject/AsyncSubject';
@@ -138,6 +139,7 @@ export {
138139
Subject,
139140
Scheduler,
140141
Observable,
142+
Operator,
141143
Subscriber,
142144
Subscription,
143145
Symbol,

0 commit comments

Comments
 (0)