Argument to eval and evalAsync are optional

Reference : https://github.com/angular/angular.js/pull/8558
This commit is contained in:
Basarat Ali Syed
2014-09-04 09:50:18 +10:00
parent 0d999bb466
commit 2167630b2a
+4 -6
View File
@@ -482,13 +482,11 @@ declare module ng {
$digest(): void;
$emit(name: string, ...args: any[]): IAngularEvent;
// Documentation says exp is optional, but actual implementaton counts on it
$eval(expression: string, args?: Object): any;
$eval(expression: (scope: IScope) => any, args?: Object): any;
$eval(expression?: string, args?: Object): any;
$eval(expression?: (scope: IScope) => any, args?: Object): any;
// Documentation says exp is optional, but actual implementaton counts on it
$evalAsync(expression: string): void;
$evalAsync(expression: (scope: IScope) => any): void;
$evalAsync(expression?: string): void;
$evalAsync(expression?: (scope: IScope) => any): void;
// Defaults to false by the implementation checking strategy
$new(isolate?: boolean): IScope;