nestjs-api-tools
Version:
Wrappers for convenient API development including validation, logging and i18n wrappers
11 lines • 320 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Jsonb = void 0;
const typeorm_1 = require("typeorm");
const Jsonb = (options) => (0, typeorm_1.Column)({
type: 'jsonb',
default: {},
...(options || {}),
});
exports.Jsonb = Jsonb;
//# sourceMappingURL=jsonb.decorator.js.map