UNPKG

@kezios/forest-express-decorator

Version:
12 lines (11 loc) • 395 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SmartField = void 0; const SmartField = (options) => { return function (target, propertyKey) { if (target.fields === undefined) target.fields = []; target.fields.push(Object.assign(Object.assign({}, options), { field: propertyKey })); }; }; exports.SmartField = SmartField;