Angular IServiceProvider::$get is injected

Actually the $get function is called via invoke.
This commit is contained in:
Michel Salib 2013-11-27 15:06:38 +01:00
parent 6e6bb810be
commit a59d261c8d

View File

@ -20,7 +20,7 @@ declare module ng {
// All service providers extend this interface
interface IServiceProvider {
$get(): any;
$get(...services: any[]): any;
}
///////////////////////////////////////////////////////////////////////////