16 lines
575 B
16 lines
575 B
4 months ago
|
import * as METADATA_KEY from "../constants/metadata_keys";
|
||
|
import { Metadata } from "../planning/metadata";
|
||
|
import { tagParameter, tagProperty } from "./decorator_utils";
|
||
|
function multiInject(serviceIdentifier) {
|
||
|
return function (target, targetKey, index) {
|
||
|
var metadata = new Metadata(METADATA_KEY.MULTI_INJECT_TAG, serviceIdentifier);
|
||
|
if (typeof index === "number") {
|
||
|
tagParameter(target, targetKey, index, metadata);
|
||
|
}
|
||
|
else {
|
||
|
tagProperty(target, targetKey, metadata);
|
||
|
}
|
||
|
};
|
||
|
}
|
||
|
export { multiInject };
|