Merge pull request #3089 from hellochar/patch-3

Add applyAsync to IRootScopeService
This commit is contained in:
Masahiro Wakame
2014-11-05 14:38:28 +09:00

View File

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