mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-05 16:10:11 +08:00
Added "kind", "value" and "exception" to Rx Notifications
This commit is contained in:
Vendored
+4
-1
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user