From e4693b884b4edd3756475409742e34c6ec88d977 Mon Sep 17 00:00:00 2001 From: Tomas Carnecky Date: Fri, 5 Jul 2013 13:52:23 +0200 Subject: [PATCH] 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). --- 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 8e5e2a007f..4320bebb8b 100644 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -644,7 +644,7 @@ declare module ng { template?: string; templateUrl?: string; replace?: bool; - transclude?: bool; + transclude?: any; restrict?: string; scope?: any; link?: Function;