mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Fix module definition for IModule
Put the IModule definition in angular module.
This commit is contained in:
Vendored
+3
-1
@@ -287,9 +287,11 @@ declare module angular.animate {
|
||||
interface IAnimateCssService {
|
||||
(element: JQuery, animateCssOptions: IAnimationOptions): IAnimateCssRunner;
|
||||
}
|
||||
}
|
||||
|
||||
declare module angular {
|
||||
interface IModule {
|
||||
animation(name: string, animationFactory: IAnimateFactory): IModule;
|
||||
animation(name: string, animationFactory: angular.animate.IAnimateFactory): IModule;
|
||||
animation(name: string, inlineAnnotatedFunction: any[]): IModule;
|
||||
animation(object: Object): IModule;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user