Merge pull request #10720 from bersling/patch-1

Add missing definition
This commit is contained in:
Paul van Brenk
2016-08-19 14:24:02 -07:00
committed by GitHub

View File

@@ -238,6 +238,7 @@ declare namespace angular {
* @param directiveFactory An injectable directive factory function.
*/
directive(name: string, inlineAnnotatedFunction: any[]): IModule;
directive(name: string, injectionFunction: Function): IModule;
directive(object: Object): IModule;
/**
* Register a service factory, which will be called to return the service instance. This is short for registering a service where its provider consists of only a $get property, which is the given service factory function. You should use $provide.factory(getFn) if you do not need to configure your service in a provider.