Update angular.d.ts

This commit is contained in:
Boris Prpic
2016-02-13 02:30:12 +01:00
parent f8e2d6025e
commit 7677a9f3aa
+2 -2
View File
@@ -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<string>;
require? : any;
restrict?: string;
scope?: any;
template?: string | Function;