@nestjs/microservices
Version:
Nest - modern, fast, powerful node.js web framework (@microservices)
20 lines (19 loc) • 617 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Client = Client;
const constants_1 = require("../constants");
/**
* Attaches the `ClientProxy` instance to the given property
*
* @param {ClientOptions} metadata optional client metadata
*
* @publicApi
*
*/
function Client(metadata) {
return (target, propertyKey) => {
Reflect.set(target, propertyKey, null);
Reflect.defineMetadata(constants_1.CLIENT_METADATA, true, target, propertyKey);
Reflect.defineMetadata(constants_1.CLIENT_CONFIGURATION_METADATA, metadata, target, propertyKey);
};
}
;