Revert 783404b..18ef03e

This rolls back to commit 783404bd8a.
This commit is contained in:
martinmcwhorter
2014-08-04 01:01:21 +01:00
parent 18ef03e31d
commit 9bdeb5e6c8

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;