You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
543 B
13 lines
543 B
import * as ERRORS_MSGS from "../constants/error_msgs";
|
|
import * as METADATA_KEY from "../constants/metadata_keys";
|
|
function injectable() {
|
|
return function (target) {
|
|
if (Reflect.hasOwnMetadata(METADATA_KEY.PARAM_TYPES, target)) {
|
|
throw new Error(ERRORS_MSGS.DUPLICATED_INJECTABLE_DECORATOR);
|
|
}
|
|
var types = Reflect.getMetadata(METADATA_KEY.DESIGN_PARAM_TYPES, target) || [];
|
|
Reflect.defineMetadata(METADATA_KEY.PARAM_TYPES, types, target);
|
|
return target;
|
|
};
|
|
}
|
|
export { injectable };
|
|
|