mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
Merge pull request #1650 from JohnKurlak/master
Added has() method to ng.auto.IInjectorService
This commit is contained in:
3
angularjs/angular.d.ts
vendored
3
angularjs/angular.d.ts
vendored
@@ -819,7 +819,8 @@ declare module ng {
|
||||
interface IInjectorService {
|
||||
annotate(fn: Function): string[];
|
||||
annotate(inlineAnnotadedFunction: any[]): string[];
|
||||
get (name: string): any;
|
||||
get(name: string): any;
|
||||
has(name: string): boolean;
|
||||
instantiate(typeConstructor: Function, locals?: any): any;
|
||||
invoke(inlineAnnotadedFunction: any[]): any;
|
||||
invoke(func: Function, context?: any, locals?: any): any;
|
||||
|
||||
Reference in New Issue
Block a user