From 8d71d227bfb932acb274b3a35a14cf3cedcdc0a5 Mon Sep 17 00:00:00 2001 From: Gregory Petrosyan Date: Thu, 6 Jun 2013 17:59:36 +0400 Subject: [PATCH] =?UTF-8?q?angular.d.ts=20=E2=80=94=20make=20'scope'=20be?= =?UTF-8?q?=20any,=20not=20bool?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See http://docs.angularjs.org/guide/directive: `scope` can be either `true`, or object hash which defines a set of local scope properties derived from the parent scope. --- angularjs/angular.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index a12223ab9c..10fb67a3f2 100644 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -646,7 +646,7 @@ declare module ng { replace?: bool; transclude?: bool; restrict?: string; - scope?: bool; + scope?: any; link?: Function; compile?: Function; }