1 | import { Token } from '../token.class';
|
2 | /**
|
3 | * Injects a list of services into a class property or constructor parameter.
|
4 | */
|
5 | export declare function InjectMany(): Function;
|
6 | export declare function InjectMany(type?: (type?: any) => Function): Function;
|
7 | export declare function InjectMany(serviceName?: string): Function;
|
8 | export declare function InjectMany(token: Token<any>): Function;
|