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