Revert "Revert aec2fa9..9bdeb5e"

This reverts commit 8d1e03ff77.
This commit is contained in:
martinmcwhorter
2014-08-04 01:02:13 +01:00
parent 8d1e03ff77
commit d5ddb0544b
2 changed files with 2 additions and 0 deletions

View File

@@ -337,6 +337,7 @@ declare module ng {
$new(isolate?: boolean): IScope;
$on(name: string, listener: (event: IAngularEvent, ...args: any[]) => any): Function;
$on(name: string, listener: (event: IAngularEvent, eventArg: any) => any): Function;
$watch(watchExpression: string, listener?: string, objectEquality?: boolean): Function;
$watch(watchExpression: string, listener?: (newValue: any, oldValue: any, scope: IScope) => any, objectEquality?: boolean): Function;