Added "kind", "value" and "exception" to Rx Notifications

This commit is contained in:
Carl de Billy
2013-05-19 16:30:39 -04:00
parent ddad6540d1
commit f4dcf1a486
+4 -1
View File
@@ -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