Fixed constructor implicit return type issue

This commit is contained in:
David Pfeffer
2015-09-20 20:20:31 -04:00
parent b17b669edf
commit d3ba5a24d7

View File

@@ -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 {