From d3ba5a24d7aea88ff5818ee08f7e4925230f2c1e Mon Sep 17 00:00:00 2001 From: David Pfeffer Date: Sun, 20 Sep 2015 20:20:31 -0400 Subject: [PATCH] Fixed constructor implicit return type issue --- rx-angular/rx.angular.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rx-angular/rx.angular.d.ts b/rx-angular/rx.angular.d.ts index 413abf30b..9e76a95b6 100644 --- a/rx-angular/rx.angular.d.ts +++ b/rx-angular/rx.angular.d.ts @@ -14,7 +14,7 @@ declare module Rx { } export interface ScopeScheduler extends IScheduler { - constructor(scope: ng.IScope); + constructor(scope: ng.IScope) : ScopeScheduler; } export interface ScopeSchedulerStatic extends SchedulerStatic {