From 7677a9f3aa9755b24ee85853766da8c8e11f7280 Mon Sep 17 00:00:00 2001 From: Boris Prpic Date: Sat, 13 Feb 2016 02:30:12 +0100 Subject: [PATCH] Update angular.d.ts --- angularjs/angular.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/angularjs/angular.d.ts b/angularjs/angular.d.ts index a591410a2..fda3f9fa0 100644 --- a/angularjs/angular.d.ts +++ b/angularjs/angular.d.ts @@ -1710,7 +1710,7 @@ declare module angular { * Define DOM attribute binding to component properties. Component properties are always bound to the component * controller and not to the scope. */ - bindings?: Object; + bindings?: any; /** * Whether transclusion is enabled. Enabled by default. */ @@ -1766,7 +1766,7 @@ declare module angular { name?: string; priority?: number; replace?: boolean; - require? : string | Array; + require? : any; restrict?: string; scope?: any; template?: string | Function;