From f4dcf1a486ea3361c1eab1824faf37ff3b54b7f2 Mon Sep 17 00:00:00 2001 From: Carl de Billy Date: Sun, 19 May 2013 16:30:39 -0400 Subject: [PATCH] Added "kind", "value" and "exception" to Rx Notifications --- rx.js/rx.js.d.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/rx.js/rx.js.d.ts b/rx.js/rx.js.d.ts index 51c57d712..144e1aca8 100644 --- a/rx.js/rx.js.d.ts +++ b/rx.js/rx.js.d.ts @@ -203,9 +203,12 @@ declare module Rx { toObservable(scheduler?: IScheduler): IObservable; hasValue: bool; equals(other: INotification): bool; + kind: string; + value?: any; + exception?: any; } export module Notification { - //absctract + //abstract //function new (): INotification; function createOnNext(value: any): INotification;//ON