angular.d.ts — make 'scope' be any, not bool

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.
This commit is contained in:
Gregory Petrosyan
2013-06-06 17:59:36 +04:00
parent 2969df8b85
commit 8d71d227bf

View File

@@ -646,7 +646,7 @@ declare module ng {
replace?: bool;
transclude?: bool;
restrict?: string;
scope?: bool;
scope?: any;
link?: Function;
compile?: Function;
}