Skip to content

Commit

Permalink
feat(Operator): Expose the Operator interface to library consumers
Browse files Browse the repository at this point in the history
By exposing the Operator interface directly, consumers of Rx.ts can more easily
implement their own operators by calling lift() with their own operator.
  • Loading branch information
Kevin van der Vlist committed Dec 27, 2015
1 parent f3a163d commit 29aa3af
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Rx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ import './add/operator/zip';
import './add/operator/zipAll';

/* tslint:disable:no-unused-variable */
import {Operator} from './Operator';
import {Subscription} from './Subscription';
import {Subscriber} from './Subscriber';
import {AsyncSubject} from './subject/AsyncSubject';
Expand Down Expand Up @@ -138,6 +139,7 @@ export {
Subject,
Scheduler,
Observable,
Operator,
Subscriber,
Subscription,
Symbol,
Expand Down

0 comments on commit 29aa3af

Please sign in to comment.