Merge pull request #760 from wereHamster/angularjs-module-config-function

Change type of angularjs module config fuction to any
This commit is contained in:
Boris Yankov
2013-07-08 16:47:51 -07:00
+1 -1
View File
@@ -54,7 +54,7 @@ declare module ng {
name: string,
/** name of modules yours depends on */
requires?: string[],
configFunction?: Function): IModule;
configFunction?: any): IModule;
noop(...args: any[]): void;
toJson(obj: any, pretty?: bool): string;
uppercase(str: string): string;