Merge pull request #7680 from RafaelMalgor/master

Inline annotated function support added to service method on IProvideService
This commit is contained in:
Masahiro Wakame
2016-01-24 00:25:40 +09:00

View File

@@ -1876,6 +1876,7 @@ declare module angular {
provider(name: string, provider: IServiceProvider): IServiceProvider;
provider(name: string, serviceProviderConstructor: Function): IServiceProvider;
service(name: string, constructor: Function): IServiceProvider;
service(name: string, inlineAnnotatedFunction: any[]): IServiceProvider;
value(name: string, value: any): IServiceProvider;
}