Merge pull request #551 from brettpostin/patch-1

Added animation() signatures to IModule
This commit is contained in:
Boris Yankov
2013-05-15 05:37:22 -07:00
+3
View File
@@ -72,6 +72,9 @@ declare module ng {
// see http://docs.angularjs.org/api/angular.Module
///////////////////////////////////////////////////////////////////////////
interface IModule {
animation(name: string, animationFactory: Function): IModule;
animation(name: string, inlineAnnotadedFunction: any[]): IModule;
animation(object: Object): IModule;
/** configure existing services.
Use this method to register work which needs to be performed on module loading
*/