From 29aa3afb0d817b12f597038df8012235b5ffc069 Mon Sep 17 00:00:00 2001 From: Kevin van der Vlist Date: Sun, 27 Dec 2015 14:33:56 +0100 Subject: [PATCH] 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. --- src/Rx.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Rx.ts b/src/Rx.ts index d6d9a43799..1eb77953fe 100644 --- a/src/Rx.ts +++ b/src/Rx.ts @@ -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'; @@ -138,6 +139,7 @@ export { Subject, Scheduler, Observable, + Operator, Subscriber, Subscription, Symbol,