@dazejs/framework
Version:
Daze.js - A powerful web framework for Node.js
10 lines • 439 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Autowired = void 0;
const symbol_1 = require("../symbol");
const Autowired = function (target, propertyKey) {
const type = Reflect.getMetadata('design:type', target, propertyKey);
Reflect.defineMetadata(symbol_1.PROPERTYTYPE_METADATA, type, target.constructor, propertyKey);
};
exports.Autowired = Autowired;
//# sourceMappingURL=autowired.js.map