From 5868972ea7b9d804a806519d4ef4c8cba6476b00 Mon Sep 17 00:00:00 2001 From: Xiaohan Zhang Date: Mon, 3 Nov 2014 13:37:12 -0800 Subject: [PATCH] Add applyAsync to IRootScopeService --- angularjs/angular.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index 2c1436096d..4659da7612 100755 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -482,6 +482,9 @@ declare module ng { $apply(): any; $apply(exp: string): any; $apply(exp: (scope: IScope) => any): any; + + $applyAsync(exp: string): any; + $applyAsync(exp: (scope: IScope) => any): any; $broadcast(name: string, ...args: any[]): IAngularEvent; $destroy(): void;