From 98a5df369c5fc159c6b193fedc205394ce847761 Mon Sep 17 00:00:00 2001 From: basarat Date: Wed, 17 Jul 2013 22:12:07 +1000 Subject: [PATCH] scopes have $parent which are also scopes scopes have $parent which are also scopes --- angularjs/angular.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index fb452fa273..7d4886fd0d 100644 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -199,6 +199,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; }