Change IDirective.transclude to be of any type

It can actually be bool or string, but TypeScript doesn't allow union types (see http://typescript.codeplex.com/workitem/120).
This commit is contained in:
Tomas Carnecky
2013-07-05 13:52:23 +02:00
parent 0f87f45ca8
commit e4693b884b

View File

@@ -644,7 +644,7 @@ declare module ng {
template?: string;
templateUrl?: string;
replace?: bool;
transclude?: bool;
transclude?: any;
restrict?: string;
scope?: any;
link?: Function;