Updating Rx.Angular

This commit is contained in:
mick delaney
2015-07-01 12:04:31 +01:00
parent af64d67481
commit 3623794ae9
2 changed files with 11 additions and 1 deletions
+5
View File
@@ -1,3 +1,8 @@
// Type definitions for angularjs extensions to rxjs
// Project: http://reactivex.io/
// Definitions by: Mick Delaney <https://github.com/mickdelaney/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="rx.angular.d.ts" />
var app = angular.module('testModule');
+6 -1
View File
@@ -1,3 +1,8 @@
// Type definitions for angularjs extensions to rxjs
// Project: http://reactivex.io/
// Definitions by: Mick Delaney <https://github.com/mickdelaney/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../angularjs/angular.d.ts" />
/// <reference path="../rx/rx.d.ts" />
/// <reference path="../rx/rx.time.d.ts" />
@@ -5,7 +10,7 @@
declare module Rx {
interface IObservable<T> {
safeApply($scope: ng.IScope, callback: (data: any) => void);
safeApply($scope: ng.IScope, callback: (data: any) => void): Rx.Observable<any>;
}
}