diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index 3e0185c35d..22f4cbf724 100644 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -200,6 +200,8 @@ declare module ng { $watch(watchExpression: string, listener?: (newValue: any, oldValue: any, scope: IScope) => any, objectEquality?: bool): Function; $watch(watchExpression: (scope: IScope) => any, listener?: string, objectEquality?: bool): Function; $watch(watchExpression: (scope: IScope) => any, listener?: (newValue: any, oldValue: any, scope: IScope) => any, objectEquality?: bool): Function; + + $parent: IScope; $id: number; }