UNPKG

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