mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
Merge pull request #8566 from okamiconcept/patch-2
Fix module definition for IModule
This commit is contained in:
Vendored
+3
-1
@@ -287,9 +287,11 @@ declare namespace 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