Reduced type severity of templateProvider in IState interface

templateProvider can be an annotated function (any[]) like controllerProvider, so any is a more appropriate typing.
This commit is contained in:
Kevin Weeks
2014-08-18 14:39:59 -07:00
parent 17f8e5aca2
commit f800265294

View File

@@ -11,7 +11,7 @@ declare module ng.ui {
name?: string;
template?: any;
templateUrl?: any;
templateProvider?: () => string;
templateProvider?: any;
controller?: any;
controllerAs?: string;
controllerProvider?: any;